Shopify themes, liquid, logos, and UX
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
Solved! Go to the solution
This is an accepted solution.
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);
}
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!
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
This is an accepted solution.
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);
}
Did this work for anyone? I tried it and its not working.
Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024The Hydrogen Visual Editor is now available to merchants in Shopify Editions | Summer '...
By JasonH Sep 2, 2024Note: Customizing your CSS requires some familiarity with CSS and HTML. Before you cust...
By JasonH Aug 12, 2024