On April 24, 2007, zbyszek wrote

> hi all,
>
> I have two problems with subemenus. It looks fine in FF, IE6 and Safari
> (I don't tested it in Opera).
>
> http://www.dywiz.com/test/ManSaw/v4/
>
> 1. submenu have a border on the left side of block. In IE7 it's parted
> on each submenu - it have a break between submenus. Is it possible to
> fix it?
>
> 2. submenu is centred like as texts in main menu. How can I move it on
> left side like it looks in others browsers?
>
> regards,
>
> zbyszek

I can not work out the first question. I can see a left hand border in the 
submenus in both IE7 and FF. The submenus have this CSS to hide them.

#p7PMnav ul {
        margin: 0;
        padding: 0;
        background-color: #FFFFFF;
        position: absolute;
        left: -9000px;
        z-index: 10000;
}

The trigger for the dropdown is in the javascript, so the submenus are not 
positioned underneath the top level menu with CSS when hovered. Pure CSS based 
dropdown menus can now work in IE7 since it now honors the hover of any 
element. The element to make CSS dropdowns work when hovered is li element. The 
CSS you have is very convoluted and hard to follow but that's because it is 
auto generated. I would recommend the Sons of Suckerfish as an alternative.

http://www.htmldog.com/articles/suckerfish/dropdowns/

Kind Regards, Alan

______________________________________________________________________
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