Please use 2 instead of 9999 z-index value
like as: z-index: 2;
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:
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: -45px moves dots upwardz-index: 2 ensures proper layeringMobile 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.
Please use 2 instead of 9999 z-index value
like as: z-index: 2;