From: Richard Brown <[EMAIL PROTECTED]>

>I am a bit worried  
>that the header nav still drops down. Could folks check this for me  
>please?
>
><http://www.theoldcoachworks.org.uk/>
><http://www.theoldcoachworks.org.uk/wp-content/themes/coachworks/ 
>style.css>

The problem you're having in IE is that you've encountered the IE doubled 
float-margin bug [1]. The usual fix is to give the element a non-sensical 
{display: inline;}. Even if the .out divs weren't already (display:) block 
elements, they take on that property by virtue of being floated and do not need 
{display: block;} to be declared. 

Therefore, you'll need to change your display property in the following 
selector to overcome the margin bug. This fix is not likely to bother other 
browsers, but certainly could be hidden from them if you so choose. 

.out {
display: inline; /* <<<<<<<<< change this <<<<<<<*/
background: #bbb; 
border: 1px solid #ddd; 
float: left;
margin: 1em;
}

I hope that helps,

~holly

[1] http://www.positioniseverything.net/explorer/doubled-margin.html 
 
                   
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to