@hefoli please add the below code to the “base.css” file
@media screen and (max-width:480px){
.banner {
height: 100vh;
}
.banner__media{
height: 100vh;
}
}
A user encountered a mobile display issue with the Dawn 13.0 theme’s homepage banner. Despite uploading a single image that displayed correctly on desktop, the mobile view showed a distorted or improperly sized image, with half the page appearing empty.
Attempted Solutions:
Working Solution:
height: 100vh !important for screens under 771.98px widthResolution: The issue was resolved using the final CSS solution, which properly scaled the banner image to full viewport height on mobile devices.
@hefoli please add the below code to the “base.css” file
@media screen and (max-width:480px){
.banner {
height: 100vh;
}
.banner__media{
height: 100vh;
}
}