Hello everyone,
I added the code below to my section-image-banner.css of my Dawn theme to separate the banner images on mobile and desktop, and it works! Unfortunately I noticed that, the email signup banner section, and every section with banner, that doesn’t have two banners option, doesn’t show the banner on mobile.
Which code should I add/change to fix this?
Thank you in advance
@media screen and (min-width: 750px) {
.banner {
min-height: 80rem !important; flex-direction: row;
}
}
.banner__media:first-child {
width: 100%;
}
.banner__media+.banner__media {
display: none;
}
@media screen and (max-width: 749px) {
.banner__media:first-child {
display: none;
}
.banner__media+.banner__media {
width: 100%;
display: block !important;
}
.banner__content::before{
padding-bottom: 150% !important;
}
}