Hi
im trying to hide the sort button on mobile only my site is https://luxurymrkt.com/collections/footwear-1
thank you
Hi
im trying to hide the sort button on mobile only my site is https://luxurymrkt.com/collections/footwear-1
thank you
Hi,
To remove the sort button, you should be able to hide it from your theme editor. However, if you were unable to find it, please add the code below to assets/theme.css file.
@media only screen and (max-width: 767px) {
.collection-filter__sort-container {
display: none !important;
}
}
Hope it helps.
Thanks.
Thank you!