Remove image fade

Asked

Viewed 37 times

0

I have a website in my hand and I need to fade the photos because the customer does not want it to be dark when he hovers his mouse over it. As I am new in the area I would like to know what this property is, whether it is javascript, jQuery or in the CSS itself to find where part of the code is and disable.

The site in question is the http://www.astmetal.com.br/ and the images are from the 'our products' section'.

  • 2

    This effect is in the CSS. O zoom that gives in the image, is in this class .thumb-info:hover img. Already the "dark" effect, is in these two classes .thumb-info .thumb-info-wrapper:after and .thumb-info:hover .thumb-info-wrapper:after

  • managed to do what he needed to do?

  • I just tested and it worked! Thank you very much!

1 answer

0

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

.thumb-info .thumb-info-wrapper:after {
  background: unset;
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.