Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1353085

    Start with launching the site just to see it. Nicely minimal.
    If you click once on the bird logo on the left nothing happens. If you click on it a second time it launches the next page properly. Not to be confused with a double click. Just a second click. (???)
    -Can you get that to launch the next page without having to do the second click?
    When you click on the QR code image you’ll notice it shifts to the left a little. It’s not until you click on it again that it launches the QR code info.
    -Can you get that to launch in one click as well?
    -I would also like just the QR code image to open in a new tab while the bird logo would open in the same window.
    I tried to create the page with the images as single images instead of a horizontal gallery but, I couldn’t get the images to be side by side like the gallery.
    That home page is portfolio item: Phoenix digital tech

    Once you click on the bird logo and get to the second page. The curser acts as if the bird logo is a link but, it is not. Also the face image acts like a link but, it is not either. I don’t want people to think the site is broken.
    The QR code image on this page takes a second click again to launch but, I like that it launches in a new tab.
    The second page is portfolio item: Digital tech in Phoenix Arizona for professional still photography
    There are no other pages or portfolio items being used at this time.

    Lastly, the images are struggling in the mobile version. I am using an iPhone 13 Pro. iOS 15.4.1
    The home page looks like it has the secret black logo image pasted partially over the bird logo. The gallery on each mobile page is now a slider gallery instead of a side by side horizontal gallery. The images seem too big so maybe they defaulted to a slider? I wasn’t sure how to make them smaller for mobile. Would like them to look like the desktop, please.

    Phew!!

    #1353231

    Hey jkos,
    Thanks for the link to your site, the issues you are experiencing are because you are using the Horizontal Gallery Slider to show your logo and QR image, this slider is designed to advance on the first click and once the image has the active class then the next click will open the link.
    This element is not a good choice for what you are trying to do, for as you see on mobile it will show one image and slide to show the next image.
    Try using a grid element with two 1/2 columns and placing an image element in each section with a link.

    Best regards,
    Mike

    #1353252

    Making great progress!! Thank you for the grid element suggestion. That is working out well.

    Just a couple more things to dial in, please.

    In the desktop version, is it possible to have the titles NOT show up when hovering over an image?

    Can I reduce the gap top & bottom on the row of three images?
    (second page, portfolio item – Digital tech in Phoenix Arizona for professional still photography)

    Lastly, the images on the mobile landing page are vertical and I think that looks awesome!
    But when you click the bird to the next page… The row of three images look like micro thumbnails. LOL!!!
    Can we get that page to look like desktop page?

    Home/landing page is portfolio item: Phoenix digital tech
    The second page with three images is portfolio item: Digital tech in Phoenix Arizona for professional still photography

    Thanks again!

    #1353288

    Hi,
    You can disable the linked image overlay at: Enfold theme options > Advanced Styling > Linked Image Overlay
    2022-05-28_007.jpg
    You can remove the Titles on mouse-over by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_remove_title_script() { 
    ?>
        <script>
    (function($){
        $("*").hover(function(){
          $(this).removeAttr("title");
        });  
      })(jQuery);
      </script>
        <?php
    }
    add_action('wp_footer', 'custom_remove_title_script');

    Best regards,
    Mike

    #1353292

    Thanks Mike, I don’t mind the linked image overlay but, I do find it strange that my Enfold theme options > Advanced Styling doesn’t look like your image. Mine does not have the Linked Image Overlay. Strange….

    The code for removing titles on mouse-over worked. Thank you!

    The four links at the bottom of page two don’t change color with mouse-over. I feel like I have that set to turn blue but, something is a miss. lol

    Also still need help with the three images on page two. The desktop looks great but, the mobile version has micro thumbnails. lol
    Would be great if we could get that to look like the desktop, please.

    Thank you!
    Jason

    #1353297

    Hi,
    For the advanced style you would need to use the dropdown Select an element to customize to see the options:
    2022-05-28_008.jpg
    for the four links try this css:

    #top #main .main_color .avia_textblock p a:hover {
    	color: #0839cc;
    }

    For your portfolio page mobile, up to 767px, try this css:

    @media only screen and (max-width: 767px) { 
    #top.postid-619 #av-layout-grid-1 .flex_cell.avia-builder-el-last {
    	display: none;
    }
    #top.postid-619 #av-layout-grid-1 .flex_cell {
    	padding: 0;
    }
    }
    

    for the same page, 768px to 1440px, try adding this css:

    @media only screen and (min-width: 768px) and (max-width: 1440px) { 
    #top.postid-619 #header {
    	display: none;
    }
    .html_header_left #top.postid-619 #main {
        margin-left: 0;
    }
    #top.postid-619 #av-layout-grid-1 .flex_cell.avia-builder-el-last {
    	display: none;
    }
    .html_header_sidebar.html_content_align_left #top.postid-619 .container {
        float: none;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1353313

    Ha!!! I figured out the dropdown menus in the Advanced Styling shortly after I responded. LOL!!

    Your code for the hover over links worked! Thank you!

    Your code for the three images on the second page mobile worked as well. Thank you! Thank you!

    Not sure what the third section of code is for? It’s all working. I don’t want to wreck anything. LOL!!
    What does this third section of code do for me?

    Thanks for getting me to where I wanted to be. :)
    Jason

    #1353338

    Hi,
    Glad this helped, the third section is for tablets 768px to 1440px, it was just some minor adjustment I noticed when I was testing your site, if it looks good to you then it’s working :)
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    #1353374

    Yes, hopefully that is all the adjustments I will need for a while. Thank you again!

    Jason

    #1353377

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Image oddities’ is closed to new replies.