This topic has 5 replies, 2 voices, and was last updated 5 years, 11 months ago ago by Rose Tyler
I would like my product images to be zoomed in when hovered over and also have the “quick view” feature to encompass the whole product image (I don’t want the words to encompass the image, only the function).
Basically, when someone hovers over my product image I would like the image to zoom, and then if they click anywhere on the image I would like it to pull up the quick view where they can still add to cart.
Can this be done with css?
Hello,
Please try to use this custom css code:
.products-grid .product .product-image-wrapper img,
.product-slide .product .product-image-wrapper img{
transition: transform .2s;
}
.products-grid .product:hover img,
.product-slide .product:hover img{
transform: scale(1.1);
}
.products-grid .product .show-quickly,
.product-slide .show-quickly {
font-size: 0px !important;
width: 100%;
height: 100%;
background-color: transparent;
}
Regards
Yes, that worked. Thank you very much.
Which variable would I change if I want to zoom in a little more?
Never mind, I figured that out.
You’re welcome!
Regards
The issue related to '‘Product image questions’' has been successfully resolved, and the topic is now closed for further responses