Hi, how could I remove slide counter on mobile swipe enabled sections, but it is not slides, its collections and multicolumn sections. See picture bellow
Topic summary
Goal: Hide the slide counter on mobile swipe-enabled sections (collections and multicolumn) in the Dawn theme.
Key proposals:
- Add CSS per section: Using the section’s Custom CSS field, set “.slider-buttons { display: none; }”. This hides the counter for that specific section.
- Base.css scoped rule: “.collection-list-wrapper .slider-buttons { display: none; }” worked for collections but not for multicolumn.
- Global rule in base.css: “.slider-buttons { display: none; }” was suggested but did not work for the requester.
- Mobile-only option: In component-slider.css, add a media query to target mobile widths: “@media (max-width: 990px) { .slider-mobile-gutter .slider-buttons { display: none; } }”. A media query applies CSS only under specified screen sizes.
Outcome: The requester confirmed the per-section Custom CSS approach worked, while adding CSS to base.css did not. They thanked contributors after successful implementation.
Notes:
- CSS (Cascading Style Sheets) controls styling; “.slider-buttons” is the counter’s container.
- Images were shared for illustration but not essential to the solution.
Status: Resolved with a working per-section fix; an optional mobile-only method was also provided.
Hi, https://wearhappy.lt/, no password, its live already
You can add this code to Custom CSS of each section in Online Store > Themes > Customize to remove it
.slider-buttons { display: none; }
Hello @DaivaHappy ,
Please add this CSS in Base.css.
.collection-list-wrapper .slider-buttons {
display: none;
}
The code worked on collections section, but on multicolumn (section bellow in my picture) you can still see the counter. Could you help me to remove that one as well?
I am not that advanced to be able to put code somewhere in the middle… ![]()
@DaivaHappy Please follow below steps to hide slider count on mobile view alone. Let me know whether it is helpful for you.
- From admin panel, go to “Online Store” → “Themes”.
- Click action button from the current theme and select “Edit code”.
- Search “component-slider.css” and then paste the below code in the bottom of that file.
CODE:
@media screen and (max-width:990px) {
.slider-mobile-gutter .slider-buttons {
display: none;
}
}
For your information - You can update the pixel from 991px to any other pixel that you want to hide the slider buttons.
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.
Go to your Online Store > Themes > Customize > select section you want to hide slide counter, add code in Custom CSS
Code did not worked whent put in base.css, but worked when put in each section custom CSS field ![]()
thank you, perfect explanation and it worked ![]()


