you're layout is a little odd.. i'd start with a basic layout and work from there.. something like this... (i set fixed heights just so you can see how it lays out, do with them what you will..)
HTML Code:
<!DOCTYPE html>
<html>
<head>
<title>Untitled Document</title>
<style>
#container{width:500px;height:800px;}
#header{width:500px;height:100px;margin-bottom:10px;}
#footer{width:500px;height:100px;}
#mid-wrap{width:500px;height:800px;margin-bottom:10px;}
#sidebar{float:left;width:150px;height:800px;margin-right:10px;}
#content{float:left;width:340px;height:800px;}
</style>
</head>
<body>
<div id="container">
<div id="header"></div>
<div id="mid-wrap">
<div id="sidebar"></div>
<div id="content"></div>
</div>
<div id="footer"></div>
</div>
</body>
</html>
Bookmarks