i'm just gonna describe the whole idea of having 3 columns in a page.
first of all we need two div tags. then we give them the float attribute.
like this:
<div class="left-col" style="float:left;width:20%;">this is the contents of our left most column.</div>
<div class="right-wrapper" style="float:right;width:80%;"> ... </div> so far we've got only 2 columns. for having the 3rd one we're gonna need 2 other DIVs placed inside the "right-wrapper".
we just do it like this:
<div class="left-col" style="float:left;width:20%;">this is the contents of our leftmost column.</div>
<div class="right-wrapper" style="float:right;width:80%;">
<div class="middle-col" style="float:left;width:60%;">this is the middle column.</div>
<div class="right-col" style="float:right;width:20%;">and this is the right and 3rd column.</div>
</div> just like that we've got all 3 columns we needed.