How to hide a button on mobile using the Impulse theme?

Hi ,

I would like to hide the button in picture on mobile only. My site is https://luxurymrkt.com

Hi @Luxurymrkt ,

You can going to the /assets/theme.css file, then add the short code at to bottom of file:

@media only screen and (max-width: 767px){
#shopify-section-template--15648732545205__rich-text{
  display:none;
}
}

Hope can helpful to you!

Thanks!