HTML:
HTML Code:
<div id="pageWrapper">
<div id="leftColumn">
<div id="whateverContainer"></div>
</div>
<div id="middleColumn">
<div id="whateverOtherContainerOne"></div>
<div id="whateverOtherContainerTwo"></div>
</div>
<div id="rightColumn">
<div id="YouGetTheIdea"></div>
</div>
<div id="anythingBelow"></div>
</div>
and here is the CSS
Code:
body {
background-color:#fffff7;
text-align:center;
}
#pageWrapper {
width:960px;
margin:0pt auto;
position:relative;
text-align:left;
background-color:#fffff7;
}
#leftColumn, #middleColumn {
float:left;
width:315px;
}
#rightColumn {
float:right;
width:315px;
}
#anythingBelow {
clear:both;
}
Ok, that was some like 2 minute hand coding....but you should get the idea...
Bookmarks