How to hide banner on mobile view Shopify dawn

Hi,

please could I get some assistance in how to hide this image banner so that it shows only on desktop view

theme: dawn

url: webse.co.uk

kind Regards

Hi @slatty ,

You can hide your image banner title by following these steps below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-image-banner.css->paste below code at the bottom of the file:

@media (max-width: 749px) {
#shopify-section-template–15850075586780__1648130833cc79546f {
display: none !important;
}
}

Hope it will help you!