Reply To: Post/page text body width

#20126
Daniel Tara
Keymaster

The wide margins are displayed only on pages with boxed design. It does not apply to single posts or pages with full screen design. If you want it to you can add the following styles to your custom CSS:

.single.layout-full-width .hentry,
.single.layout-full-width .archive-header {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.single.layout-full-width .content-area > :first-child,
.single.layout-full-width .content-area > .hentry:first-child {
	padding-top: 90px;
}

.single.layout-full-width .content-area > :last-child {
	padding-bottom: 90px;
}