How can I hide the slideshow controls ONLY when the style is set to 'Counter'?

Solved

How can I hide the slideshow controls ONLY when the style is set to 'Counter'?

PCollect
Visitor
2 0 1

Hi! I've been searching the forum for various ways to hide the slideshow controls, but I haven't quite found what I'm after. The solutions I've seen so far are to hide the slideshow controls completely, but I want to hide them only when I set the style to 'Counter' - is this possible, and how would I do it?

 

My thinking is that if I can hide them only when that specific style is selected, it'll allow me to hide the controls on some slideshows but keep them on others. I don't like the way the Counter style looks, so I'm happy to sacrifice that option to hide the controls. I want to keep the auto-rotate working though, in case that makes a difference. 

 

I'm using Ride theme, and the site I need help with is: https://pearsoncollectables.co.uk

Thanks in advance!

Accepted Solution (1)

DrewOswald
Shopify Partner
81 18 25

This is an accepted solution.

Add this CSS to the Custom CSS area of that particular slideshow to hide the controls only for that slideshow:

.slideshow__controls {
  display: none;
}

DrewOswald_0-1749603889807.png

 

devDrew webDev · Need a developer? Send me a DM.
Follow me on Instagram for Shopify Tips & Tricks: https://www.instagram.com/devdrew.webdev/

View solution in original post

Replies 6 (6)

DrewOswald
Shopify Partner
81 18 25

This is an accepted solution.

Add this CSS to the Custom CSS area of that particular slideshow to hide the controls only for that slideshow:

.slideshow__controls {
  display: none;
}

DrewOswald_0-1749603889807.png

 

devDrew webDev · Need a developer? Send me a DM.
Follow me on Instagram for Shopify Tips & Tricks: https://www.instagram.com/devdrew.webdev/
PCollect
Visitor
2 0 1

Oh wow, I didn't even know it was possible to do that on an individual basis - thank you so much, that's really great and has worked perfectly! A much simpler solution than I expected. 😊

Alex485483
New Member
7 0 0

 

Hi  I think I can help with that.  If you're still having issues, feel free to share more details.

A852E36D-2707-4AB4-AE88-205A14FF08E3.jpeg

 

Dan-From-Ryviu
Shopify Partner
12018 2348 2528

Hi @PCollect 

You can do that by adding this code at the bottom of your base.css file

.slideshow__controls:has(.slider-counter--counter) { display: none !important; }

 

 

- Helpful? Like & Accept solution! - Support me? Buy me a coffee
- 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.

Alex485483
New Member
7 0 0

Yes sir I can do that 

Alex485483
New Member
7 0 0

6B139FA2-C1E6-4881-95B9-43AA879CD273.jpeg