here is an example:
CSS:
.left{
display:inline-block;
float: left;
}
.right{
display:inline-block;
float:right;
}
.clearfix{
clear:both;
}
this is the css part also you need to give them a width
#main_body{
width: 640px;
}
.col-1{
width: 200px;
padding:10px;
}
.col-2{
width: 400px...