I have a featured collection and i enabled the setting “enable swipe on mobile”. This also includes a page/product count at the bottom of the section. I would like to remove the page count only for the mobile version of the shop. The option to swipe through the collection should still be enabled.
Thank you for your quick reply. I already figured out how to specifically remove the count for the mobile version. I will post it here as my answer to provide a solution if anyone stumbles across this feed in search of help.
In base.css post at then:
@media only screen and (max-width: 989px){
.slider-buttons.no-js-hidden {
display: none;
}
}