Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
At the moment there are little scrolling animations that appear on my site (stimagz.com), and just help add a bit of life to each section as you scroll. These look great on desktop, but rather laggy on mobile so I want to get rid of them.
Unfortunately, there doesn't seem to be a different option for that in my theme settings, only a universal on or off button.
Any ideas? Thank you!
You can add custom css to disable animations on mobiles in theme settings. What I did was to make all animation durations 0s and also delays. That way it does not animate. It's not the cleanest solution but it works.
Hope this will help you guys if you struggle with the same issue!
@media only screen and (max-width: 768px) {
* {
animation-duration: 0s !important;
animation-delay: 0s !important;
}
}
I changed it to max-width:749px, that's what my theme uses as mobile breakpoint
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025