..oO(craig_shaw)
Quote:
I uploaded it to a test server.
The address is http://www.lindendesign.co.uk/test/templates/header.html
If anyone could help, that would be great. |
In your CSS rule for "#user_title h1" change this
margin-left: 10px;
to this
margin: 0 10px;
The gap was caused by the h1 default top margin. Because of a feature
called collapsing margins it was sticking out of the #user_title div.
The new declaration takes care of this and sets both the top and bottom
margin to zero.
BTW: The result in FF was the correct one, IE got it wrong (as usual).
Micha