Hello Shopify Team,
Can anyone pls tell me how to zoom into the collection list on hover.
for example: www.bellavitaorganic.com , https://ishalife.sadhguru.org/in/
my url: www.faithandyou.in
password: hello
Thanks
A user seeks help adding a zoom-in hover effect to collection list images on their Shopify store, providing example sites and their own URL for reference.
Initial Solution Attempt:
.image-with-text .gradient with a scale transform on hoverAlternative Approach:
.collection-list .gradient insteadCurrent Status:
The core issue appears to be correctly identifying the CSS selector for the specific collection list element that needs the hover zoom effect.
Hello Shopify Team,
Can anyone pls tell me how to zoom into the collection list on hover.
for example: www.bellavitaorganic.com , https://ishalife.sadhguru.org/in/
my url: www.faithandyou.in
password: hello
Thanks
Hi @AryavK
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.image-with-text .gradient {
transition: transform 0.3s ease-in-out;
}
.image-with-text .gradient:hover {
transform: scale(1.1);
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
we can try
Go To Theme> Actions > Edit Code > Base.css
Add this to the bottom of the file
.collection-list .gradient {
transition: transform 0.5s ease-in-out;
}
.collection-list .gradient:hover {
transform: scale(1.0202);
}
This is your collection right?
Its on the image with text section. It not on the collection.list. If the selector you used are working then try to take out my code in the base.css.
no no no, the thing above it, shop by category
Did this work for anyone? I tried it and its not working.
It did not work on the Symmetry theme.