How can i change “slider-counter slider-counter–dots” color to white
Topic summary
A user asked how to change the color of slider navigation dots (specifically the “slider-counter slider-counter–dots” element) to white.
Solution provided:
- Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
- Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add custom CSS targeting the slider dot elements:
.slider-counter__link--dots .dotwithbackground-color: white;.slider-counter__link--dots .dot.activewithborder-color: white;
Outcome:
The original poster confirmed the solution worked and thanked the respondent.
1 Like
Hi @SutReet
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.slider-counter__link--active.slider-counter__link--dots .dot {
background-color: white;
}
.slider-counter__link--dots .dot {
border-color: white;
}
- And Save.
- Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Thanks for the solution @Made4uo-Ribe
Welcome! Would you mind hitting ‘like’ as well? Thanks!

