Hopefully this is an easy fix.
On the Narrative theme, is there a way to disable the subtle zoom when hovering over the product images? Thank you!!
Hopefully this is an easy fix.
On the Narrative theme, is there a way to disable the subtle zoom when hovering over the product images? Thank you!!
Hey @dustinborowski ,
yes, it’s very easy. You can just add the following CSS lines of code at the end of file theme.scss of your theme.
.card__wrapper:hover .card__image {
-ms-transform: none;
-webkit-transform: none;
transform: none;
}