Hide image banner on desktop view only

I want hide image banner on desktop view, but still keep it on mobile view

I use shopify dawn theme

website is www.rosamiga.xyz

code is twentytwo

here is how to do that :

@media screen and (min-width: 750px)
.banner__media {
    display: none;
}

At which section in the edit code do I add it to?

Hi @unknown29

You can use the tutorial below to hide the specific section in mobile or desktop

Hi @unknown29
Please search for section-image-banner.css file
In this file search for ‘@media screen and (min-width: 750px) {
.banner__media {’
and put display: none; here after height: 100%;
the final code will look like this

@media screen and (min-width: 750px) {
  .banner__media {
    height: 100%;
    display: none;
  }
}

Please check if it help you!
Thank you!

Hello,
Thank you for the suggestion. There’s one problem here when you do this, the mobile website even shows a blank space where the Desktop slide is included and vice-versa