Viewing 5 replies - 1 through 5 (of 5 total)
  • I imagine you want to increase your page width. You’ll have to do that by editing the CSS.

    How do you edit the CSS? and where do you do that?

    Thread Starter opportunist86

    (@opportunist86)

    I guessed it was about css. But how exactly?

    I recommend download firebug if you’re using firefox or use the Inspector in chrome to find the elements that have fixed width. In this case, it’s usually one of the outer-most elements toward the top of the html.

    You will see that, if you click on the #container div, that this code is the culprit:

    .two-column #container {
    max-width: 770px;
    }

    This means you need to either increase the width of this container or possibly even set it to max-width: none; or simply delete it. I would go with a wider set width. In other themes, the width can be fixed on multiple items and finding the right one(s) takes a little more digging.

    Thread Starter opportunist86

    (@opportunist86)

    its not making any differnce.
    by the way, what does two-column and three column indicate?

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Increase page size’ is closed to new replies.