• Resolved mmartins

    (@mmartins)


    Hi! I’m trying to figure out how to remove the hover effect for the featured post images on the homepage, as well as the images in the widget.

    My website is: https://thefishoilconnoisseur.com/

    Right now, when I scroll over the featured image posts on the homepage, it zooms in on the image and shows this arrow icon. I want to remove this feature so that when you scroll over the image, nothing happens (but you still can click on it).

    Similarly, in the widget area, I have several images. These images move to the left when you scroll over them. I’d like that feature removed as well.

    How would I change the custom css to do this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Please use the following in your Theme Options -> Custom CSS

    .attachment-post-thumbnail.wp-post-image.img-responsive {
        transform: none !important;
    }
    .mask {
        display: none !important;
    }
    #secondary a:hover{
    padding-left:0px !important;
    }

    Thanks!

    Thread Starter mmartins

    (@mmartins)

    That worked perfectly! Thank you so much for your help.

    Hi,

    Please mark kindly this thread as resolved.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Hover Effect on Featured Post Images’ is closed to new replies.