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
February 12, 2018 at 2:18 pm
#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