Hello surreal5335,
Look at it this way and see if it works for you -
Code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style type="text/css">
html, body {margin: 0;}
#left {
height: 600px; /*demo only*/
width: 400px;
float: left;
background: #3ff;
}
#right {
height: 600px; /*demo only*/
margin: 0 0 0 400px;
background: #f00;
}
</style>
</head>
<body>
<div id="left">
<!--end left--></div>
<div id="right">
<!--end right--></div>
</body>
</html>
Based on this
simple 2 column demo.