How can I remove the image overlay fade effect using custom CSS?

Hi

I am trying to remove Image overlay fade that appears when hoovering on my section (see screenshots). Is it possible with custom css code? Would i edit it in theme.css?

Website : stockunion.co.uk

Hi @elo1234

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “theme.liquid” file. Find the tag and paste the code below before the tag.
.banner-item-text {
    opacity: 1 !important;
    background: transparent !important;
}
.split-image:hover img, .unero-banners-metro ul li:hover img, .unero-banners-grid ul li:hover img {
    opacity: 1 !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

@Made4uo-Ribe didnt work for me not sure why

Oh, Sorry i forgot to put the tag.


Please replace this one. And must be sure in the correct location.

Example:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

@Made4uo-Ribe

Worked thanks so much!!

Welcome, please don’t forget to LIKES thanks!