Remove Banner Box below Image On Dawn Theme Mobile Mode

Hi I am wondering how I can remove the banner box that appears under the image when viewing in mobile mode. I am using Dawn theme. Thank you in advance.

Hey @towerthibault
Kindly share your Store URL and Password if enabled

https://saltprintsapparel.com/

Hey @towerthibault

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @towerthibault

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

@media screen and (max-width: 749px){
.banner--mobile-bottom .slideshow__text.banner__box {
    display: none;
}
}

This did not work for me unfortunately :confused:

Hello @towerthibault

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.slideshow__text-wrapper.banner__content.banner__content--bottom-center.page-width.banner--desktop-transparent.scroll-trigger.animate--slide-in {
    display: none;
}

Thank you!!