How to remove the dots and number banner underneath the slideshow in the dawn theme?

Hello,

Im trying to remove the dots and numbers underneath the slideshow in the dawn theme as it doesnt follow the same theme as the page, please can someone advise how to do so?

Hello @CNTRLUK
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.

Hello @CNTRLUK

Go to Online Store > Themes > Actions > Edit Code > Assets > base.css
Paste your CSS at the bottom of base.css and click Save

.slideshow__controls {
  display: none !important;
}

Hi,

Store URL is cntrl.uk

Seems to have worked on mobile view but not on desktop

Hello @CNTRLUK ,

Go to Online Store > Edit Code, find the base.css file,
and add the following code at the bottom of the base.css file.

.slideshow__controls.slideshow__controls--top.slider-buttons {
    display: none;
}

Thanks!