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
Hey @towerthibault
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- 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 ![]()
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!!

