View Single Post
Old 12-28-2008, 04:41 PM   #10 (permalink)
CoryMathews
The Addict
 
CoryMathews's Avatar
 
Join Date: Nov 2007
Location: USA
Posts: 256
Thanks: 7
CoryMathews is on a distinguished road
Default

The problem is not a really a css or an html problem but a problem with the sizes you picked.

.navleft { width:100px; float:left; display:block; height:50px; overflow:hidden; }
.navright { width:150px; float:right; display:block; height:50px; overflow:hidden; }
.contentleft { top:0; margin:0; width:500px; float:left; display:block; background:#FFF; color: #000; overflow: hidden; height:100px; }
.contentright { top:0; left:0; margin:0; width:141px; float:right; display:block; color:#FFF; overflow:hidden; height:400px; }

change that to

.navleft { width:500px; float:left; display:block; height:50px; overflow:hidden; }
.navright { width:150px; float:right; display:block; height:50px; overflow:hidden; }
.contentleft { top:0; margin:0; width:500px; float:left; display:block; background:#FFF; color: #000; overflow: hidden; height:500px; }
.contentright { top:0; left:0; margin:0; width:150px; float:right; display:block; color:#FFF; overflow:hidden; height:400px; }

that should clean it up. You basically just had your wrapper to large and your contents to small.
CoryMathews is offline  
Reply With Quote