Can we change the color to white?
Topic summary
A Shopify store owner using the Sense theme (v9.0.0) wanted to replace numbered slideshow indicators with dots and enable auto-rotation.
Initial Solution:
- No coding required for basic dot indicators
- Change slideshow style from “counters” to “dots” in theme customization settings
- However, dots initially appeared below the image rather than overlaid on it
Desktop Fix:
CSS code added to theme.liquid file (above </body> tag) repositions dots over the image using negative margin and adjusts styling:
margin-top: -45pxmoves dots upwardz-index: 2ensures proper layering- Custom white color styling for better visibility
Mobile Issue:
Multiple users reported the desktop CSS (wrapped in @media screen and (min-width: 750px)) doesn’t affect mobile views, leaving dots below images on phones. One user also noted dots overlapping the hamburger menu.
Mobile Solution:
A later contributor suggested using the same CSS without the media query wrapper to apply positioning across all screen sizes.
The discussion remains open regarding optimal mobile implementation and potential menu overlap conflicts.