View Single Post
10-20-2006, 08:10 PM
#2
Dream is offline Dream
Dream's Avatar
Status: Lewis Ainslie
Join date: Dec 2005
Location: UK, England.
Expertise:
Software:
 
Posts: 1,630
iTrader: 15 / 100%
 

Dream is on a distinguished road

Send a message via MSN to Dream

  Old

Im not a coder, But ill give it a shot.

The CSS

Code:
}
#container {
	        width: XXpx;
	        height: XXpx;
}
#left {
	        width: XXpx;
	        height: XXpx;
	  float:left;
	        margin-left: XXpx;
}
#middle {
	        width: XXpx;
	        height: XXpx;
	  float:left;
	        margin-left: XXpx;
}
#right{
	        width: XXpx;
	        height: XXpx;
	        margin-left: XXpx;
}

The HTML

Code:
<div id="container"> 
     
     <div id="left"> </div>
     <div id="middle"> </div>
     <div id="right"> </div>
 
</div>
Lewis