KuroB
August 18, 2021, 6:47am
1
Hi there, I just bought the impulse theme but when using slideshows there is no option to stop the image, text and button from sliding in as I prefer the fixed look once the screen has loaded.
Example here : https://themes.shopify.com/themes/impulse/styles/modern/preview
Is there a way to adjust this via coding?
Thanks
Kuro
A very “brutal” and inelegant way to remove all animations and transitions on the hero slider is with code. Add it to the end of file theme.css
.hero * {
animation: none !important;
opacity: 1.0 !important;
transition: none !important;
}
A better approach is to do granularly on each classes and eventually comment the code not needed. But it will be too long to explain here in a post.
1 Like
is there a way to stop make make just the Text sliding and stop the image?
please i’m tring everything.
i mean to have just the text sliding and have a static image.
Thank you