Not sure how to fix it, I haven’t edited the theme/announcement files.
Ok so I noticed that if in component-slider.css I did make a change in
.slider-buttons {
display: flex;
align-items: center;
justify-content: center;
}
where I changed the display option from “flex” to “none” to remove the slideshow buttons.
So how can I remove the slideshow buttons without potentially breaking the announcement bar?
Ok, I found the solution, under “base.css” I inserted
slideshow-component .slideshow__controls {
display: none;
}
and it worked for both my top and bottom slideshow!