Blog - Post text width and margins

Hi,

I’m creating blog posts using Wordpress editor.
The post text is a bit wide and I would like to make them narrowed.
The page is set up to display with 1200px wide (feature image) and the text is smaller (around 1080px wide)
I would like to have only the text smaller (around 800px wide)

Is it possible to achieve that?

Thank you

UPDATE: Partially solved.

I add the CSS, but it affected the Blog post and the Blog page and I only want to affect the Blog post.

.blog .entry-wrap, .single-post .entry-wrap {
    max-width: 900px;
  margin: auto;
}

Also, the margin between the post title and the feature image seems to big. Can I reduce that?

Thank you

Hey @PanInternational,

If you want to only target the single blog posts, you can just use:

.single-post .entry-wrap {
    max-width: 900px;
    margin: auto;
}

Please try to add this code as well:

.wp-block-image {
    margin-bottom: 10px;
}

Hope this helps.

That was helpful.

Thank you

You are most welcome @PanInternational!
If you need anything else we can help you with, don’t hesitate to open another thread.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.