How can I hide the sort button on mobile in the Impulse theme?

Hi

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

thank you

@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.

Thank you!