Hi everybody,
Does anyone know how I can make the image banner totally full screen on desktop?
I would like for the content below the banner NOT to show when seeing my homepage.
My website: www.perzia.nl
Kind regards,
Perzia
A user wants to make their image banner display fullscreen on desktop in the Dawn theme, while ensuring content below the banner remains visible on the homepage.
Proposed Solution:
Another user provided a CSS code snippet to add to the theme’s base.css file:
assets > base.css in the theme editorStatus: The solution has been offered but not yet confirmed as tested or working by the original poster.
Hi everybody,
Does anyone know how I can make the image banner totally full screen on desktop?
I would like for the content below the banner NOT to show when seeing my homepage.
My website: www.perzia.nl
Kind regards,
Perzia
Add this code at the bottom of Theme > Edit code> assets > base.css file
@media screen and (min-width: 750px) {
.banner--large:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
min-height: 100vh !important;
}
}
try it and let me know