Remove column numbers on MOBILE

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

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

1 Like

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 on theme.liquid

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

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