Image banner photo gets cut off on mobile view dawn theme

Hello! I need some help with my mobile banner on my product page for my soap.

On Desktop view, the banner looks like this:

But on mobile, the image gets cut off and there is a large grey area on top:

Does anyone know how to fix this?

The preview website for this is: https://verterra.sg/?_ab=0&_fd=0&_sc=1&preview_theme_id=169281782043

Hi @Verterra , Can you kindly share your store link with us? We will check it and suggest you a solution if possible.

Hi! This is the link for the version I’m working on at the moment:
https://verterra.sg/?_ab=0&_fd=0&_sc=1&preview_theme_id=169281782043

If it doesnt work, you can look at verterra.sg. Thank you!

Hi @Verterra ,

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

Step 2: Search file theme.liquid

Step 3: Inside head tags. You need create style tags. After insert my code inside style tag

@media only screen and (max-width: 767px) {
  .banner__media.media.scroll-trigger.animate--fade-in::before {
    display: none !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:

Hi @Verterra

This is Amelia at PageFly - Shopify Advanced Page Builder app.

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css or theme.css

Step 3: Add code

@media (max-width: 767px) {
  .banner__media.media.scroll-trigger::before {
    display: none !important;
  }
}

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Thank you, this worked for me! :slightly_smiling_face:

@Verterra , No problem, Have a nice day :heart_eyes: