Impulse theme hide sort by button mobile

Solved
Luxurymrkt
Navigator
485 2 87

Hi

im trying to hide the sort button on mobile only my site is https://luxurymrkt.com/collections/footwear-1

thank you 

FED13E0C-3DC0-41C1-BFE5-ED6DE7DE1349.jpeg

Thank You | mike
Accepted Solution (1)
DavidEKim
Shopify Partner
387 129 143

This is an accepted solution.

@Luxurymrkt 

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.

If helpful, please Like and Accept Solution.
Want to customize your store, please feel free to contact me.
PeopleVillage - Shopify Partner

View solution in original post

Replies 2 (2)
DavidEKim
Shopify Partner
387 129 143

This is an accepted solution.

@Luxurymrkt 

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.

If helpful, please Like and Accept Solution.
Want to customize your store, please feel free to contact me.
PeopleVillage - Shopify Partner
Luxurymrkt
Navigator
485 2 87

Thank you!

Thank You | mike