Hello,
Try to replace previous code with this one
.product-element-top > a > img {
transition:0.3s all ease-in-out;
-webkit-transition:0.3s all ease-in-out;
-moz-transition:0.3s all ease-in-out;
}
.product-element-top.with-hover:hover > a > img {
opacity:0;
}
and also add this snippet to the Custom JS section
jQuery(document).ready(function() {
jQuery('.product-element-top').has('.hover-img').addClass('with-hover');
} );
Write us about the results.