Topic summary
A user asked how to remove the navigation dots/controls displayed beneath a slideshow on their Shopify store.
Solutions Provided:
Multiple community members offered CSS-based solutions:
- Add
.slideshow__controls { display: none; }to the Custom CSS section of the slideshow - Insert the same CSS code (with
!importantflag) into thebase.cssfile under Assets - Place the CSS snippet in
theme.liquidjust above the</body>tag
Resolution:
The original poster confirmed one of the solutions worked successfully. The discussion is resolved.
2 Likes
@Degain it will need css, can you please share the website link?
Hi @Degain
You can do that by adding this code to Custom CSS of your slideshow section.
.slideshow__controls { display: none; }
Hello @Degain ,
Here are the steps to apply the necessary changes in your Shopify store:
- In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
- Locate Asset > base.css and paste the following code at the bottom of the file:
.slideshow__controls{
display:none !important;
}
Let me know if you need further assistance!
Hey @Degain ,
I hope you’re doing well!
- From your Shopify Admin go to online store > themes > … > edit code
- In your theme.liquid file, find the (press CTRL + F or command + F on Mac)
- paste this code right above the tag:
I hope this helps! If you have any further questions or need additional assistance, feel free to let me know. Wishing you a great day ahead.
Best,
Diego
it works thanks!
I’m happy to hear! You’re most welcome.
