How to widen the content area

  • Unknown's avatar

    I’m trying to widen the area where my content is, but when i do so the sidebar doesn’t look as it should… To be more specific: I want the text to be widen, not more white empty space.
    I’ve tried some css but i didn’t work, no matter how many px i tried:
    #container {
    width: 800px;
    }

    Help anyone? What kind of code to use?

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

  • Could you try adding additional rule (text-align:justify;) to the following existing style:

    #content .post {
        border-bottom: 15px solid #fcfcb0;
        border-left: 27px solid #fcfcb0;
        padding-left: 20px;
        text-align:justify;
    }

    Justify stretches the lines so that each line has equal width (like in newspapers and magazines).

  • The topic ‘How to widen the content area’ is closed to new replies.