how can i remove this scrollbar?? i want to show it one under the other
1 Like
Hi @martiiin , Can you kindly share your store link (with the password protected, if any) with us? We will check it and suggest you a solution if possible.
1 Like
Hi @martiiin ,
Step 1. Go to Admin → Online store → Theme > Edit code
Step 2. Find the file theme-styles.scss.css
Step 3. Add this code to the end of file
.row.spotlight-3-blocks::-webkit-scrollbar,
.row.store-slider::-webkit-scrollbar {
display: none !important; /* Chrome, Safari and Opera */
}
.row.spotlight-3-blocks,
.row.store-slider {
-ms-overflow-style: none !important; /* IE and Edge */
scrollbar-width: none !important; /* Firefox */
}
Result:
If it helps you, please like and mark it as the solution.
Best Regards
1 Like
Hi @martiiin ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()


