Hi,
I am using Dawn 7.0.0.
I have a different image banner for desktop and mobile. When I test how it looks on different mobile devices, sometimes the mobile banner image is cut off (by around 20px or so).
I used this code to get the different banners to show:
.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;
}
}
@media screen and (max-width: 749px) {
.banner__content::before{
padding-bottom: 150% !important;
}
}
I’ve attached a file to show how it should look and how it looks on some devices.
Does anyone know how to make the mobile banner image the correct size no matter what device is being used to view it?
Thanks!

