Hi everyone,
I have a slider section on my Shopify store that works with navigation buttons (not dragging). I’m trying to hide the scrollbar for a cleaner look
Has anyone dealt with this before? I’d really appreciate some help or guidance on how to hide the scrollbar without breaking the slide effect.
The website : https://www.draegerparis.com/
Thanks a lot in advance!
Moeed
2
Hey @stg_herve
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Yes, you can hide the scrollbar without affecting the functionality. Add this to the section setting “Custom CSS”
.slider {
scrollbar-width: none;
padding-bottom: 0;
}
If you want to have it only on desktop, use this:
@media (min-wdth:768px){
.slider {
scrollbar-width: none;
padding-bottom: 0;
}
}