Discussing Shopify Functions development, deployment, and usage in Shopify apps.
Want to remove the number of the amount of columns on mobile it’s fine on a PC
https://7e769e-70.myshopify.com/
pw: jake
Solved! Go to the solution
This is an accepted solution.
Hello @jakethagun
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> component-slider.css
add this code at the end of the file
.slider-buttons {
display: none;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
This is an accepted solution.
Hello @jakethagun
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> component-slider.css
add this code at the end of the file
.slider-buttons {
display: none;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Hello @jakethagun
Online Store > Theme > Edit Code > base.css
Go to Bottom
.slider-counter {
display: none !important;
}
Thank You
Hello @jakethagun
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px) {
.slider-counter {
display: none !important;
}
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.