Sandy wrote:
> http://cantoraccess.com/sandy/resources/paper01.html

> The sub menu is a nested list, which I hear is showing only half the
>  hover instructions. The text is turning white, but the background
> colour is, sadly, staying white instead of turning brown.

IE6 has stacking-problems - hiding the background-layer behind other
elements' layers. The bug-trigger is 'position: relative' on '.menu ul
ul', but deleting that doesn't help much since IE6 also have whitespace
problems and space the list-elements too far apart vertically.

Adding a 'hasLayout' trigger to the li will fix the background *and* the
spacing problem...

.menu li {
width: 100%;
}



The list also suffers from the 'em font-resizing bug' in IE/win, so
adding...

html {
font-size: 100%;
}

...for all IE/win versions would be a good idea as long as you're using
'em' units for font-sizes in the list.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to