Archived topic
Border around an entire page?
3 replies · Started by Paul on March 24, 2017
What's the best way to have a border around the edges of an entire page including the navigation, page header, page content and the footer elements? There doesn't appear to be a main parent container wrapping around all these to style with CSS for such purposes.
Hi Paul,
Try this:
body {
border: 5px solid #000000;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this is what you are after.
This article might help: https://docs.generatepress.com/article/adding-a-container-wrapper/
Thank you, Tom