Hello! I set up my slideshow auto-rotated, and I am trying to figure out how to make the pagination of it invisible (picture attached). I tried to edit code on Theme but couldn’t find to hide the pagination code. Any suggestions would be extremely helpful!
My store link: segohair.com
1 Like
Hi @JoleneXu
Go to your Online store > Themes > Edit code > Assets > open base.css file, add this code below at the bottom and save file
.slideshow__controls { display: none !important; }
4 Likes
Hi @JoleneXu
Try 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:
.slideshow__controls.slideshow__controls--top.slider-buttons.no-js-hidden {
visibility: hidden !important;
}
- And Save.
- Result:
4 Likes

