Remove hover icon on blog featured image

Hi,

I would like to remove the icon and change the colour when hover on the featured images on my blog grid.
I cannot figure out what class or where I can change that.

I have added a screenshot for you to have a look. Also add login details in a secure note.!
Thanks

Screen Shot 2020-06-15 at 09.50.54|347x500

Hi Alejandro,

This might help for selecting proper selector needed for custom CSS Changing blog post text size in CSS affects Navigation Collapsed and Classic Feature List elements

As for your question, you can try this CSS for removing the icon

    .blog .entry-thumb:before {
        display: none;
    }

then this with the color,

.blog .entry-thumb {
    background-color: #cccccc;
}

Thanks!

That works, thanks so much!

We’re glad it worked.

Cheers!

Hi,

one more thing. How I can remove the ones from the category search?

Thanks
A

Hi Alejandro,

To remove the hover icon on the category pages, please use the CSS code below.

.archive .entry-thumb:before {
display: none;
}

.archive .entry-thumb {
background-color: #cccccc;
}

Thank you.

Thanks so much!

@Tikapu

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.