Archived topic
Increase inner span on post view
3 replies · Started by Marius on July 21, 2021
Hello,
in the customizer under layout - container in the last point, I can set the inner span left and right. But this appears also in the archive view. I want more span left and right only on posts and pages, not on archive, or home page.
How can I make this?
Hi there,
it would require this CSS:
@media(min-width: 768px) {
.single-post.separate-containers .inside-article {
padding: 40px 80px;
}
}
the 40px is the top and bottom spacing - and the 80px is the left and right.
okay, thanks. I thought that this would be possible without css and looked everywhere, but did not find it. Now I know.
Glad to be of help