Fix for Magento Admin Menus Disappearing in Opera

Users of Opera might find that mousing down menus makes them disappear from underneath the cursor, making for a very frustrating experience.

From searching round the internet I understand the problem to be around the onmousevent on the li elements. So instead of using these events to show and hide menus we can just use CSS (as it should be) to show and hide the menus.

Methods to add the CSS include a custom user stylesheet (Right-click > Edit Site Preferences > Display tab), or the Stylish extension. The CSS to add is very simple:


#nav li:hover > ul {
  left:auto;
  z-index:999999;
}


Tags: magentomenuscssopera