Hey..
I have a problem with my CSS, let me show you..
CSS
.wrap { font-size:12px; width:980px; margin:auto; }
.left_wrapper { height:auto; float:left; width:20%; background:#699; }
.right_wrapper { height:auto; float:right; width:79.7%; border-color:#b7b6b6; border-top-width:0px; background:#993; }
HTML
<div class="wrap">
<div class="left_wrapper">
blah blah
</div>
<div class="right_wrapper">
blah blah
</div>
</div>
Now, works all fine and this is the output i want
[img]http://i1104.photobucket.com/albums/h333/Clarkey4/903cf051.png[/img]
But, if I add ANY padding to left_wrapper in the css, this happens..
[img]http://i1104.photobucket.com/albums/h333/Clarkey4/2eb02c27.png[/img]
any guidance will be appreciated :)