Archived topic
Entry Content Size
7 replies · Started by Anuar on September 11, 2021
hi
I am using a marketer theme for my blog.
The problem I am facing is the size of entry content without using any sidebar is way too broad. For example, the entry content size without a sidebar is 1098.
How I can customize the size to 800
I appreciate any help you can provide.
Hi Anuar,
Any chance you can link us to the site in question?
You can use the private information field.
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
Hi Ying
Here the link https://anuartaxi.com/batu-caves/
Am trying to copy the post size of entry-content similar to Classic theme.
Regards
Anuar
A layout element would be what you need:
https://docs.generatepress.com/article/layout-element-overview/#content-1
More info here:
https://youtu.be/zE8t7VGu2g0?t=424
Hi
It change the whole layout size but my post inside-article section size remain at 1100.
I have full size feature images 1200 x 800 set above the content, the container should tally with the image width.
How I can change the inside-article section size to 980 as in the attachment without change the post layout size?
<img src="https://www.screencast.com/t/QVFXUJleZpOE" alt="inside-article" />
Thank you
Hi there,
Are you aiming for something like this? https://share.getcloudapp.com/mXuKGj0y
If yes, add this CSS:
body.single-post #page .inside-article {
max-width: 980px;
margin: 0 auto;
}
If this is what you're aiming for instead - https://share.getcloudapp.com/GGup58mz - try this CSS instead:
body.single-post #page .inside-article > * {
max-width: 980px;
margin: 0 auto;
}
Thank you
No problem. :D