Topic Resolution: Resolved
  • Closed
  • kim dunitz
    Spectator
    August 31, 2015 at 6:35 am #20268

    Updated to latest version. All but 4 of my image links are performing as before, hover over any part of the image and click….
    On the home page I have 4 icon style images 54px x 65px – Call, Find, Connect & Review. Tt will only allow it to be clicked or touched at the very bottom of the image. On the phone it seems to the user that the links do not work as they would normally touch the center.

    Home

    Denzel Chia
    Moderator
    Posts: 2672
    August 31, 2015 at 7:59 am #20273

    Hi,

    Your images are almost covered by the shadow of the slider above it.
    It’s a transparent div, so you cannot see it, but you will detect it using firebug.

    Please use the following codes in your Theme Options -> Custom CSS
    It will bring your images to the top of the “stack”, so that you can click on it.

    .wp-image-5467,.wp-image-5469,.wp-image-5468,.wp-image-5470{
    position:relative !important;
    z-index:9999 !important;
    }

    The above class names, for example wp-image-5467 is actually the id of that image, if you change to another image, we will need to rewrite this css code.

    Please clear your mobile and desktop browser cache before re-visiting your webpage.

    Thanks!

    kim dunitz
    Spectator
    Posts: 37
    August 31, 2015 at 8:29 pm #20284

    That works. Cheers!