How do I remove the arrows under the slideshow on dawn theme? if possible id also like the dots on the bottom right of the picture. there is also a faint line under the slideshow like a border id like removed
Topic summary
A user seeks to remove navigation arrows, play/pause buttons, and a faint border line from the Dawn theme slideshow, while also repositioning the navigation dots to the bottom right.
Solution Provided:
- Edit the themeās CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add custom CSS code to hide slider buttons and remove borders
- Code was refined through iterations to address all specific elements
Final CSS targets:
- Navigation arrows (previous/next buttons)
- Play/pause autoplay button
- Border line under slideshow
- Repositions control dots to bottom right corner
The solution successfully resolved all requested modifications. The user confirmed the code worked as intended.
Hi @Spujeh
Like this?
If it is check this one.
- From your Shopify admin dashboard, click on āOnline Storeā and then āThemesā.
- Find the theme that you want to edit and click on āActionsā and then āEdit codeā.
- In the āAssetsā folder, click on ābase.css, style.css or theme.cssā file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
button.slider-button.slider-button--next, button.slider-button.slider-button--prev {
display: none;
}
.slideshow__controls, .slideshow__autoplay.slider-button {
border: 0;
}
.slideshow__controls.slideshow__controls--top.slider-buttons {
justify-content: right;
}
- And Save.
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
will this remover the arrows , play button and the border?
Please review the result, which one is removed. Would you like to remove the play/pause button as well?
yes, I would like to remove the pause and play buttons and remove the arrows . I also want the border removed
Iāve circled The faint line I want removed plus the play and pause button . Is there also a way to make the dots on the bottom right of the image
Got it, please replace on this code below.
.slideshow__controls, .slideshow__autoplay.slider-button {
border: 0 !important;
}
.slideshow__controls.slideshow__controls--top.slider-buttons {
position: absolute;
right: 0;
bottom: 0;
}
button.slider-button.slider-button--next, button.slider-button.slider-button--prev,
button.slideshow__autoplay.slider-button {
display: none;
}
.slideshow__controls.slideshow__controls--top.slider-buttons {
justify-content: right;
}
And Save.
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
thank you! that worked
Welcome! Would you mind hitting ālikeā as well? Thanks!
thanks buddy


