Narrative Theme - Disable Product Hover Zoom

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!!

https://lakercoffee.com/

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;
}