MainMenu class and the cursor
The default.css file states:
cursor: pointer;
cursor: hand;
for all of the MainMenu classes. This is not needed, the only classes where you need to specify the cursor are:
.MainMenu_MenuBar(for main root menu items)
.MainMenu_MenuItem(for sub menu items)
.MainMenu_SubMenu(for scrolling menus)
Also,
cursor: hand;is invalid CSS code to the
W3C standards. This should be removed and just
cursor: pointer; should be used. Note however that if
cursor: hand; is removed, in the Internet Explorer 5.5 browser, the mouse will not use the hand cursor.