Hi Diego,
Sounds like you running the website in quirks mode instead of standards mode.
IE7/8 supports :hover
only in standards mode, which is why the menus aren' shown. Click includes
fixes for IE6 though
because IE6 doesn't support :hover except on links.
I always put the following doctype on top of my border-template.htm:
<!doctype html>
This doctype is also defined by HTML5.
Kind regards
Bob
On 10/12/2010 03:57, Diego Arena wrote:
> Hello:
>
> I created an web application using a menu. The problem that I am
> experimenting is that when I put
> the mouse over the menu the option list are no displayed in IE8. In Firefox
> it is working fine.
>
> This is my menu class:
>
> public class MainMenu extends Page{
> @Bindable
> protected Menu rootMenu = new MenuFactory().getRootMenu();
>
> public MainMenu() {
> rootMenu.setStyle("color", "red");
> }
>
> }
>
> I don´t know what is the problem. If any have an idea, please let me know
> what is happening.
>
>
> Thanks
>
> Diego
>
>
>
>
>
>
>
>
>
>
>