Remove "1/5, 2/5, etc." Numbers on Mobile Image Slider & Multicolumn

Hello,

I’m looking to remove the “1/5, 2/5, etc.” numbers on image sliders and multicolumn sliders on mobile for the Dawn theme.

Any help would be greatly appreciated!

Thank you.

Hello @SkipTheOptician can you share the store URL ?

Hello @kazi_1 , the URL is https://skiptheopticians.com/

Can you send screenshot?

Yes @kazi_1 , I have attached the images above

add this css in assets > base.css

@media (max-width:768px) {

.slider-counter {

display: none;

}

}

Unfortunately this code didn’t work when I added it. Do I have to remove any other code for it to work?

Can you send the link of page where you have those slider? this code will remove those number if you have slider from dawn theme

https://skiptheopticians.com/products/julian

update the css with this add !important this will work

@media (max-width:768px) {

.slider-counter {

display: none !important;

}

}

@kazi_1 It worked! Thank you so much, I appreciate the help

You welcome!