you should change the body content to 2 columns rather than floating right, its easier to maintain without clearfixes and whatnot...
something like this:
HTML Code:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
#header{float:left;width:960px;height:100px;margin-bottom:20px}
#content{float:left;width:960px;height:300px}
#left{float:left;width:720px;height:300px;margin-right:20px}
#right{float:left;width:220px;height:300px;margin-bottom:20px}
#footer{float:left;width:960px;height:50px}
</style>
</head>
<body>
<div id="header"></div>
<div id="content">
<div id="left"></div>
<div id="right"></div>
</div>
<div id="footer"></div>
</body>
</html>
Bookmarks