Add This css Code Un Your Base.css File
.banner.banner--content-align-left.banner--content-align-mobile-center {
display: block !important;
}
Issue: CSS used to make a banner image fully clickable works on desktop but causes the image banner to disappear on mobile. The CSS targets .banner__content, .banner__box, .banner__buttons, and .banner__buttons .button with height/width 100%, opacity: 0, and position: absolute.
Context: Store link and password provided for testing. Screenshots show desktop working and mobile layout when the CSS is removed. The goal is a clickable banner that also renders correctly on mobile.
Proposed fixes:
Status: No confirmation that the mobile disappearance is resolved. Key question remains whether selector targeting and display overrides address the mobile rendering without breaking the clickable overlay. Images are central to illustrating the issue.
Add This css Code Un Your Base.css File
.banner.banner--content-align-left.banner--content-align-mobile-center {
display: block !important;
}