Post Body Width

Hey all,

I’m have a question regarding the width of the body section of blog posts. I’ve added CSS to give entries a max width, but the content below the featured image appears to have additional padding, or margins, or a container. I’m wondering how I can specify that the content be the same max width as everything else on the entry page.

I can provide a url if needed.

Thanks,
VS

Hi VS,

Please try updating the code to:


single-post .entry-wrap {
    max-width: 1000px;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
}

Hope this helps.

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