Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Cheers everyone,
I am working on my prestige theme and wondered whether it was possible to remove button animations on a specific section. In this case a collection list.
I am wondering this because the contrast is not working well on this specific section but I generally want to keep button animations on .
The store is amoandoak.se the section is the collection list with "Cashmere" "Angora" and "Alpaca" on the Homepage.
I have tried code snippets that I found the forum but none of them seem to work in this specific case.
Appreciate any help I can get!
Solved! Go to the solution
This is an accepted solution.
Please add this code to Custom CSS of that section to do that
button.button:hover {
color: #fff;
background-position: unset;
border-color: rgb(var(--button-background));
background-size: 100%;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
This is an accepted solution.
Please add this code to Custom CSS of that section to do that
button.button:hover {
color: #fff;
background-position: unset;
border-color: rgb(var(--button-background));
background-size: 100%;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
That worked, thank you!