Hey I’m looking for some coding that will remove the slider controls for the featured collection option. I am using craft theme. I want the arrows and number removed, but want to keep the slider. I had it that way, but when I updated my theme the code didn’t work anymore.
store link: capecandleco.com
2 Likes
Hi @AHBEessentials
Do you mean this one?
If it is 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:
@media only screen and (max-width:989px){
.slider-buttons.no-js-hidden {
display: none;
}
}
That worked. Thank you so much!
1 Like