Neve: How to have a boxed layout
⏪ Before
In the picture below you can see how a blog post looks by default:

⏩ After
To add a boxed layout in Neve all you need to do is to navigate to Appearance > Customize > Additional CSS and add this code:
.article-content-col {
padding: 20px 20px 0px 20px;
}
.single-post-container article {
padding: 0px 30px;
}
body {
background-color: #f5f5f5;
}
.posts-wrapper, .single-post-container article {
background-color: #fff;
}
.posts-wrapper > article {
margin-bottom: 0px !important;
}
.single-post-container {
padding-top: 30px;
}
