Liquid, JavaScript, themes, sales channels
To continue receiving payouts, you need to secure your account by turning on two-step authentication. If two-step authentication is not turned on your payouts will be paused. Learn more
There's no option for this in theme editor so I'm trying to find and adjust the css that's triggers this zoom on hover effect, but I cannot find it. (Commenting out `.product__modal-opener--image .product__media-toggle:hover {cursor: zoom-in;}` does not stop it, so this can't be the effect). Thanks
Solved! Go to the solution
This is an accepted solution.
The effect in question is the `transform: scale(1.03);` effect which in Dawn 2.0 resides in `assets/component_card.css` in three places:
1) .card:hover .media.media--hover-effect > img:first-child:only-child,
.card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
transform: scale(1.03);
}
2) .card-wrapper:hover .media.media--hover-effect > img + img {
opacity: 1;
transition: transform var(--duration-long) ease;
transform: scale(1.03);
}
3) .card-wrapper:hover .card--search img {
transform: scale(1.05);
}
Hi @jbk1
I checked in with my theme support team about this question to see if this is a customization request they would support. They said that isn't a feature our in house theme support would look at removing and that the reason it was included in the Dawn theme was to increase accessibility. The slight zoom makes it easier for customers with low vision or mobility to know they have their cursor over the right product or area of the store.
They did recommend considering an Out of the Sandbox theme, which has tutorials on how to remove the image zoom with mouse hover: OOTS - Disable Hover to Zoom on Product Page images.
Shay | Social Care @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit the Shopify Help Center or the Shopify Blog
Hi @Shay , thanks for asking the at your end. I understand the accessibility pov, though this zoom feature negatively impacts the visual design. The edges of images that I'm using are important to render and this zoom effect zooms the image within a fixed frame which itself does not zoom, therefore un-zoomed image looks fine with edges rendered intact, hover and image auto zooms and chops the edges of the image off because of the fixed frame within which image is zoomed. So really my question is where can I find the selector creating this effect so that I can override it, and or the fixed frame within which the image is rendered so that I can zoom that also on hover? Thanks
This is an accepted solution.
The effect in question is the `transform: scale(1.03);` effect which in Dawn 2.0 resides in `assets/component_card.css` in three places:
1) .card:hover .media.media--hover-effect > img:first-child:only-child,
.card-wrapper:hover .media.media--hover-effect > img:first-child:only-child {
transform: scale(1.03);
}
2) .card-wrapper:hover .media.media--hover-effect > img + img {
opacity: 1;
transition: transform var(--duration-long) ease;
transform: scale(1.03);
}
3) .card-wrapper:hover .card--search img {
transform: scale(1.05);
}
Glad to find this info.
I agree with the Idea of zoom for ecommerce and accessibility. However, my product photos are already macro and it looks pretty awful on mobile.
Learn these 5 things I had to learn the hard way with starting and running my own business
By Kitana Jan 27, 2023Would you love to unleash the unbridled power of the Google Shopping Channel into your sho...
By Gabe Jan 6, 2023How can you turn a hobby into a career? That’s what Emmanuel did while working as a wa...
By Skye Dec 30, 2022