On mobile, how could i get the image banner to expand downwards and cover the whole page? basically to extend the size of the page downwards - store is et-tani.com
thanks in advance
A user seeks help making an image banner expand to cover the full page height on mobile devices for their store at et-tani.com.
Proposed Solution:
base.css file100vh (full viewport height) using !important to override existing stylesStatus: The discussion appears to have a technical solution provided, though the code snippet in the response is partially corrupted/reversed, which may require clarification for proper implementation.
On mobile, how could i get the image banner to expand downwards and cover the whole page? basically to extend the size of the page downwards - store is et-tani.com
thanks in advance
Hi @ym1999
You can do that by adding this code at the bottom of base.css file in Online store > Themes > Edit code
@media screen and (max-width: 749px) {
.banner--large.banner--mobile-bottom:not(.banner--adapt) .banner__media {
height: 100vh !important;
}
}