The space between the menu and the articles is a bit dofferent from what you wrere referring to previously. But let’s start with the “boxed” question first. This theme uses the Bootstrap grid layout, so it has a set value of widths depending on various screen sizes. The smallest is 1200 on desktop monitors. If you want a boxed layout but you also need to reduce the main structure, you’ve got some custom CSS to do.
By default, the theme has this:
@media (min-width: 1200px) {
.container {
width: 1190px;
}
}
@media (min-width: 992px) {
.container {
width: 990px;
}
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
Those are media queries that changes the main containers to those sizes based on the screen size the site is viewed in.
The above is also for a full width page, not boxed. But if you want to change the boxed to be smaller, then you need to modify the class that does the boxed 1200 size.
#page.boxed1200 {
max-width: 1200px;
margin: 24px auto;
}
You will need to override the 1200px to be your size you want. Make sure it’s not smaller than the first media query further up where it has the min-width of 1200px. So whatever you make that one, such as 1000px, then your boxed1200 style needs to be no less than 1000px as well.
IMPORTANT: either use the Additional CSS tab in the customizer for this or a plugin like Simple Custom CSS. Do not edit the theme’s style.css file.