Subject: Re: [css-d] That Ol' IE6 has me in its spell - menu wise
> 
> 
> Ian Young wrote:
> > I must be going mad. A script that I use for horizontal menus 
> has stopped
> > working in this format.
> > For the life of me I cannot see where I have broken it.
> > 
> > Mini test for clarity at
> > http://www.iyesolutions.co.uk/templates/css/menu-test2.html
> 
> The suckerfish construct has an <ul> following the <a>
> 
> <div class="navh">
>      <ul>
>          <li>
>              <a href="./">Home</a>
>              <ul>
>                  <li><a href="">Home2</a></li>
>              </ul>
>          </li>
> 
> 
> Your link is floated, the ul is positioned absolutely
> 
> .navh li a, .navh li a:visited {
>    ...
>    float:left;
>    ...
>    }
> 
> .navh li ul {
>    ...
>    position:absolute;
>    ...
>    }
> 
> 
> ...... Or remove the float:left from the a.
> 
> 

Repaced the float:left with display:block and hey presto IE6 plays ball.

If no display:block, the hover doesn't cover the entire <li>

Thanks, Ingo

Ian

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.430 / Virus Database: 268.15.3/561 - Release Date: 01/12/2006 06:36
 

______________________________________________________________________
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