Home Forums WoodMart support forum For mobile and planchet versions – changing to different photo when touching it Reply To: For mobile and planchet versions – changing to different photo when touching it

#39220

Bogdan Donovan
Keymaster

Try to add the following code snippet to the Custom CSS area in Theme Settings.

body .product-grid-item .hover-img {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
}

.product-grid-item.state-hover .product-element-top .hover-img {
    opacity: 1;
    transform: scale(1.09);
    -webkit-transform: scale(1.09);
}

Regards