Banner dawn theme

Hello ,

I hope someone can help. I put a responsive banner on ly dawn theme. Only problem is that the height of the banner is not showing correctly in mobile.

I would really appreciate if someone can help me, I tried all the methods i couldn’t find the problem

thie is my store : daccachestore.com

Hi @Mabelle ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

@media only screen and (max-width: 749px) {
   .banner__media.media.banner__media-half {
      height: 400px !important;
   }
}

Here is result:

Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Thank you for your message, it worked. Best regards

Hi @flammagreg ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Inside tag head. You need create style tags. After you’ll insert my code inside it

@media only screen and (max-width: 749px) {
   .banner__media.media.banner__media-half {
      height: 400px !important;
   }
}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like