Archived topic
full screen
3 replies · Started by Klaus on February 25, 2020
Hello, I have created a grid-layout with generateblocks. I would like to make this a "full screen" layout and I would like to use a background image in the page-container. Is there a way to force "full-screen" to my homepage/startpage? (It's all about "height"). Thanks Klaus
Hi there,
If your grid has a surrounding Container block, try giving it a Minimum Height of 100vh. That should make it so the container is the full height of your screen.
Let me know :)
Hello Tom, yes that helped, thank you. I set it to 88vh to have the bottom-line visible:
.container {
min-height: 88vh;
}
On one page with ".container" the result was not pretty, so this did it:
.entry-content {
min-height: 88vh;
}
Thanks, Klaus
No problem! :)