Hey guys, so basically I added a slideshow to my store and it has that basic slide transition effect when you click on the arrows, but I’d like to remove it, is that possible?
I just want it so when someone clicks the arrows, the photo instantly changes, without any transition effect, it just pops to the next one.
Here’s my store: https://creationwithtim.com/products/cinematiq-lut-collection-copy
(Just scroll all the way down to find the slideshow section)
Thanks for the help,
Tim
1 Like
I couldn’t find it anywhere.
I checked:
-
slideshow.liquid
-
component-slider.css
-
component-slideshow.css
But didn’t find anything.
Go to your Shopify Admin
Click on Online Store Themes then click Customize on your active theme
In the theme editor, look for Theme Settings or scroll to the bottom left menu and click Custom CSS or Custom code depending on your theme
Add the following CSS code:
css
Copy
Edit
Remove transition effect from slideshow *
.slideshow slide
transition: none !important;
What this does:
It removes the sliding animation, so when someone clicks the next/previous arrow, the image just switches instantly no delay, no animation, just a clean pop effect.
Not working?
Some themes use different class names for the slideshow. If the code above doesn’t work right away try using this alternative:
css
Copy
Edit
.flickity slider
transition: none !important;
Or share your theme name and I’ll help adjust it!