3 columns with fixed width sides

The side columns are achieved by the methods described in the side panels. Here is the CSS essentials for one side:


#colourBarLeft {
background: #cfc; 
position: fixed;
width: 230px;
left: 0; top: 0; 
height: 100%;
}

#leftcol {
position: absolute; 
width: 210px;
top: 0;
z-index: 1; 
}

And here are the CSS essentials for the fluid centre:


#content {margin: 0 230px 0 230px;}

The CSS, as you can see above, is simple enough. The HTML is also not hard. Essentially it goes like this:


<div id="content">Content material</div>
<div id="leftcol">Left column material</div>
<div id="rightcol">Right column material</div>

<div id="colourBarLeft"></div>
<div id="colourBarRight"></div>

Here are some things to note:

This layout can be adapted to use em based widths or percentages. Simply change the css of the widths and margins. And it can surely be adapted to include a head and footer

Left column

The idea with the left col is to:

The aims are achieved by:

Right column

The idea with the right col is very like the left:

The aims are achieved by: