Forum Moderators: open
"View source" suggests nothing is wrong
Have you tried the validators?
W3C Validator - HTML [validator.w3.org]
W3C Validator - CSS [jigsaw.w3.org]
two ways to fix this one if it's it..
if your layout uses floats and you have lots of HTML comments in the source code, either remove the comments between floated divs or make sure the comments are inside the <div>s and not between
them
<div id="float1">
......content
<!--put comment here --></div>
<!-- not here -->
<!-- not here -->
<div id="float2"><!-- put comment here -->
......content
<!--put comment here --></div>
The second cure is to apply layout (set a width or height) on the offending element or a subsequent clearing div, however this one can be harder to pinpoint
Suzy
there are a few things that you might try. not all together, one of them might work for you, it depends on site setup
1. if you have a clearing div between the floats and any e.g. footer - set width: 100%; on it.
2. whatever the last left or right floated element in your document is set its opposite margin to -3px;
e.g. if float left, set : margin-right: -3px;
3. if you have a container div with a width set it to be 3px wider (while still keeping the contents at their original width..
otherwise if you can post a summary of your layout code and still duplicate the bug.. please do, pinpointing this one can be a nightmare! (especially working blind)
Suzy