Trying to remove filter buttons from the collections page in mobile view only.
Page URL: https://katharos.co.in/collections/aromadiffusercombo
A user needed to hide both the filter and sort buttons from their collection page, but only in mobile view on the Shopify Spark theme.
Solution provided:
@media only screen and (max-width: 749px) {
.filter-bar {
display: none;
}
}
Outcome: The solution successfully resolved the issue. The CSS media query targets mobile devices (max-width 749px) and hides the filter bar container, which includes both filter and sort functionality.
Trying to remove filter buttons from the collections page in mobile view only.
Page URL: https://katharos.co.in/collections/aromadiffusercombo
Hi @ishaankatharos ,
I just liek to clarify, you like to remove the filter only not the sort? They have same container with the sort if we remove the filter then the sort also remove. If you like the filter only then it needs a Javascript to remove filter.
yes I wanna remove both but only from the mobile view
Thank you for clarification. Try this.
@media only screen and (max-width: 719px) {
.filter-bar {
display: none;
}
}
Result:
I hope it help.
It worked. thanks a lot bro