Remove image fade

0

I have a website in my hands and I need to take the fade effect out of the photos because the client does not want it to be dark when they hover over it. As I am new to the area I would like to know what property this is, whether it is javascript, jQuery or CSS itself to find what part of the code it is in and disable.

The site in question is link and the images are from the 'our products' section.

    
asked by anonymous 24.03.2017 / 13:29

1 answer

0

To make the image not darker by mouseover you can override the CSS rule by placing this code below in your custom.css

.thumb-info .thumb-info-wrapper:after {
  background: unset;
}
    
24.03.2017 / 15:49