Remove Product Counter Icon from Featured Collection on Mobile

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

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (max-width:767px){ .slider-buttons { display: none !important; } }

Result:

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

1 Like

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; }
}
1 Like

Hello @edwinsoltan ,

Use this css in base.css

@media screen and (max-width: 749px){
.slider-buttons {
    display: none;
}
}

Thanks

1 Like