Auto Hide Menubar when mouse hover navigator,they will auto show
Going with the change suggestion by xemoka (May 13, 2008); otherwise, ''File, Print Preview'' is selectable but does nothing.
Works great! Thanks!
Good style, to update for Firefox 3:
/* begin css */
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#toolbar-menubar{
visibility: collapse !important;
}#navigator-toolbox:hover > #toolbar-menubar{
visibility: visible !important;
}/* end css */
I changed the way it hides by changing display:none to margin-top:-20px; to make it so I can keep my current organization: the adress bar and the navigation buttons are in the same bar as the menus :D
Nice! More screen estate! /me likes it! :)