Archived topic
Reduce Text area margins on Page
5 replies · Started by Amit on July 16, 2018
Hi,
I want to reduce the Content padding in only pages and not in posts. How can I do that?
Hi there,
Try this:
.page.separate-containers .inside-article {
padding: 50px;
}
It does the work but it doesn't happens seamlessly-
When we load a page, the content with normal span on whole site loads and after some moments it gets spanned to our specified width. It's kind of looking strange.
Try this URL - https://www.friedcoffee.com/best-super-automatic-espresso-machine-picks/
Not quite sure what you mean?
I'm also not seeing the CSS being added.
Let me know :)
I don't want to reduce content padding on home page and blog page. The code above reduces padding for all.
Try this instead:
.page.separate-containers:not(.blog):nog(.home) .inside-article {
padding: 50px;
}