Forum Moderators: not2easy
I'm not too sure, but I think using the clearfix [positioniseverything.net] method of clearing might work on this. I looked at several IE bugs for your page, but am not sure which one it could be. You can look through This [google.com] webmaster world google search to see what matches what you have. There are a lot of interesting threads that you can read.
Hope this helps.
The CSS:
<style type="text/css">
* { margin:0em; padding:0em; }
body { width:100%; background-color:white; font-family:helvetica, arial, sans-serif; font-size:100.01%; }
#leftnav { float:left; width:11em; background-color:#CCCC99; padding:0.5em; }
#content { background-color:white; padding:0.5em; border-left-color:#CCCC99; border-left-style:solid; border-left-width:12em; }
#footer { clear:both; background-color:#649CB7; }
</style>
The html:
<body>
<div>
<div id="leftnav">
<p>Leftnav</p>
<p>Leftnav</p>
<p>Leftnav</p>
<p>Leftnav</p>
<p>Leftnav</p>
</div>
<div id="content">
<p>Content</p>
<p>Content</p>
<p>Content</p>
<p>Content</p>
<p>Content</p>
<p>Content</p>
<p>Content</p>
<p>Content</p>
</div>
</div>
<div id="footer">
<p>Looking around for my text now. Its around here somewhere. Ahhh, there it is!</p>
</div>
</body>
[edited by: Feldon at 5:32 pm (utc) on July 25, 2005]