Customize the width of blog post

  • Hello, need a quick help from you.

    The current post width of my site Neutrino Burst is 900px and content width is 800px. Currently I’m using Ovation theme and there’s not specific option in the layout menu.

    Is there any CSS code I can use to customize the width (content/full post) of the blog.
    * only post page, not other pages in the blog

    The blog I need help with is: (visible only to logged in users)

  • Hi there,

    How exactly do you want to customize this? Do you just want it wider or narrower? I assume you’re speaking of the text column, correct?

    On the posts page at https://neutrinobursts.com/blog/, or on individual posts only?

    This code will make your content wider on single posts:

    .single-post .content-area .entry-content {
    	max-width: 900px;
    }

    Or this would do it on the single post and posts page:

    .single-post .content-area .entry-content, .blog .post .entry-content {
    	max-width: 900px;
    }
  • That’s exactly what I was looking for.
    Thanks mate.

  • The topic ‘Customize the width of blog post’ is closed to new replies.