The Clean theme has a default container width of 1000 pixels. Here we'll change the container from 1000 pixels to 800 pixels:
Before (1000px):
After (800px):
To change the container width, we simple set this on the #container in the code:
If you are using the default banner strip, you will also want to set the same width on that:
Once you change the width of the container you'll also need to adjust your columns for this new space. Here we are using the Two-Column-Right layout so we'll change the column widths for that. In this example, we'll set the main column and 600 pixels and the sidebar column at 180 pixels to fit within our 800 pixel container:
/*---2 Column-Right Layout----------------------*/ .layout-two-column-right #alpha { width: 600px; } .layout-two-column-right #beta { width: 180px; }
Comments
You can follow this conversation by subscribing to the comment feed for this post.