welcome to Sitepoint AoW,
first off you need to offset the container element so as to accommodate the left column ( we do this by giving it padding-left the same width of the left column. in this case we dont really need position relative, so I took that out ( and left:Xpx; also). I didnt know if you wanted 100% height or not.. if you dont just remove the min-height:100% of off the wrapper and and ignore the body,html rules.
Code:
body, html{height:100%;padding:0; margin: 0;}
#left_side {
position: relative;
float: left;
width: 200px;
background-color: #52f471;
margin-left: -100%;
margin-bottom: -2000px;
padding-bottom: 2000px;
}
#right_side {
position: relative;
float: left;
width: 200px;
background-color: #52f471;
margin-right: -200px;
margin-bottom: -2000px;
padding-bottom: 2000px;
}
#content_area {
position: relative;
float: left;
background-color: #ffffff;
margin-right: -200px;
padding-bottom: 2000px;
margin-bottom: -2000px;
width: 100%;
}
#wrapper{padding-left:200px; overflow: hidden; min-height: 100%}
hope that helps
Bookmarks