Hi Lenny, to achieve a full-page white overlay container that stays the full height of the page, even when scrolling you can try this approach:
Steps:
Wrap your main content inside a container widget.
Add a custom class, for example: .full-page-container.
Add CSS to your custom stylesheet (or in your theme/web CSS file):
.full-page-container
{
background-color: white;
border: 1px solid #ccc;
margin: 20px;
min-height: 100vh;
box-sizing: border-box;
padding: 20px;
}
Explanation:
min-height: 100vh makes sure the container is at least the height of the viewport.
It will expand if content inside grows beyond that (and scroll if needed).
box-sizing: border-box ensures padding and border are included in the total size.
This should give you a clean, full-height white container with margin and border that looks consistent across all screen sizes.
I hope this one helps you! :)
Hi Lenny Puente,
Give height 100% to the red cotainer