Change Color Of Slider Dots

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 .dot with background-color: white;
    • .slider-counter__link--dots .dot.active with border-color: white;

Outcome:
The original poster confirmed the solution worked and thanked the respondent.

Summarized with AI on November 3. AI used: claude-sonnet-4-5-20250929.

How can i change “slider-counter slider-counter–dots” color to white

1 Like

Hi @SutReet

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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;
}

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!