Hey,
I want to invert the slideshow bar into Black background with white dots but could not find the right code.
So I want to turn this:
Into this:
A user wants to invert the slideshow navigation bar in Shopify’s Dawn theme from a white background with black dots to a black background with white dots.
Solution Provided:
A developer shared CSS code to add to assets/component-slider.css:
.slideshow__controls background to blackOutcome:
The CSS solution successfully resolved the issue. The user confirmed it worked as intended.
Hey,
I want to invert the slideshow bar into Black background with white dots but could not find the right code.
So I want to turn this:
Into this:
code: koriclothing
Please add the following CSS code to your assets/component-slider.css bottom of the file.
.slideshow__controls {background: #000 !important;}
.slider-button {color: #fff!important;background: #000!important;}
.slider-counter__link--active.slider-counter__link--dots .dot {background-color: #fff!important;}
.slider-counter__link--dots .dot {border: 0.1rem solid #fff!important;}
Thanks!
Thank you, it worked!