Hey, I want to remove the collections counter in my shopify store in mobile view (it appears only in mobile)
store link:https://7c8266-b4.myshopify.com/
Thanks in advance.
Hey, I want to remove the collections counter in my shopify store in mobile view (it appears only in mobile)
store link:https://7c8266-b4.myshopify.com/
Thanks in advance.
Can you take a photo of the part you want to delete? I’ll help you
Hello @Etay56
Go to online store ---------> themes --------------> actions ------> edit code-------> assets------> component-slider.CSS -----> line number 314
ans search this code
.slider-buttons {
display: flex;
align-items: center;
justify-content: center;
}
and replace with this code
.slider-buttons {
display: none;
align-items: center;
justify-content: center;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Hello @Etay56
I understand you are looking to remove Pagination from the collection list.
Please follow the below steps for the desired result -:
Open Theme Customizer
Follow the steps mentioned in the screenshot.
@media screen and (max-width:990px) {
.slider-buttons {
display: none !important;
}
}
I hope it helps.
Thank you.