Hello!
I’m wondering if it’s possible to add a hover effect where just image zooms in. Here’s a perfect example of this effect.
I have also attached an ss to the items I want to include it on.
shop: artgex.myshopify.com - pass: Superpowers123
A user seeks to implement a hover effect that zooms only the product image on collection pages using the Athens theme. They provide an example website demonstrating the desired effect and mention specific items where they want this applied.
Solution Provided:
base.css file.card-overlay-media elements on hoverStatus: The discussion appears resolved with a working CSS solution, though no confirmation from the original poster is included.
Hello!
I’m wondering if it’s possible to add a hover effect where just image zooms in. Here’s a perfect example of this effect.
I have also attached an ss to the items I want to include it on.
shop: artgex.myshopify.com - pass: Superpowers123
Hi @David123123 ,
Go to Assets > base.css and paste this at the bottom of the file:
#shopify-section-template--17001530163516__c0e79860-35de-4ac6-8ed5-4972964daf1a .card-overlay-media {
transition: .4s ease-in-out;
}
#shopify-section-template--17001530163516__c0e79860-35de-4ac6-8ed5-4972964daf1a .card-overlay:hover .card-overlay-media {
transform: scale(1.09);
}
Hope it helps!