[EMAIL PROTECTED] wrote:
> ...
>>
>> The page in question is at http://northminpres.org/beta.html and all
>> CSS for the nav menus is inline.
> 
> Update: I've made no progress on this, although I did notice and  
> correct a few validation errors in my CSS. I've also seen it in  
> Netscape 7, where the submenus don't descend correctly, but the  
> rollover colors work OK. I could really use some help here!
> 

I'd like to reset ul and li first.

#nav ul, #nav li {
   margin:0;
   padding:0;
   list-style-position: outside;
   } /* add */

I think the li li should not float

#nav li ul li {         
   border-bottom: 1px dotted #849569;
   float:none; /* add */
   }


Why was the following changed from 'auto' to '0'? Changed back here to 
make N7 happy.

#nav li:hover ul,
#nav li li:hover ul,
#nav li.sfhover ul,
#nav li li.sfhover ul {
        left: auto;  /* changed again */
}

The background change on hover must be fixed with the .sfhover class for IE6

#nav li:hover,
#nav li.sfhover /* added*/
{
        background: #6D3C7A;
}


I think that could be a start.

Ingo


-- 
http://www.satzansatz.de/css.html

Please do not reply offlist; hit reply-all instead.

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- 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