Content posts too thin

I like the width of how things look on the category page -
http://www.mindwalkergames.com/category/owlgreytea/

But once you get to the actual post, it’s incredibly thin, the pictures look strange and it’s all a little hard to read. How do I make the content section wider?
http://www.mindwalkergames.com/an-adventure-in-alaska-thats-totally-indie-related-right/

Thank you so much!

Edit: I tried adjusting in site layout options and made it max width, but it only increased the size of the featured image, not the actual content.

Hello There,

Thanks for posting in!

It appears that you have added a custom css that changes the appearance of your single blog post. You have added this:

.blog .entry-wrap, .single .entry-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    text-align: center;
    background-color: #dfd9c3;
}

This code changes the background color of the content area.

If you want to make the content a little wider, you can make sue of this this code instead:

.site .x-container.max.width.offset {
    max-width: 1200px;
}

The maximum width you set in your code must be remove so that my given code will take effect.

Please let us know how it goes.

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