How can I remove the product counter icon that appears in the “Featured Collection” section? This icon is visible only on mobile devices, and I’d like to have it removed. Thank you in advance!
STORE https://timecraft.se/
REMOVE = < 1/4 >
How can I remove the product counter icon that appears in the “Featured Collection” section? This icon is visible only on mobile devices, and I’d like to have it removed. Thank you in advance!
STORE https://timecraft.se/
REMOVE = < 1/4 >
Hello @edwinsoltan
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
Result:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hi @edwinsoltan
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.
@media (max-width: 749px) {
.slider-buttons { display: none !important; }
}
Hello @edwinsoltan ,
Use this css in base.css
@media screen and (max-width: 749px){
.slider-buttons {
display: none;
}
}
Thanks