Menubar AutoHidden

Menubar AutoHidden
1450
*****
By Waga
Last updated Dec 22 2006
18 installs this week, 849 total.

Auto Hide Menubar when mouse hover navigator,they will auto show

Install options

Feedback

Reviews

xemoka said on May 13 2008

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 */ ****

JuanBR said on Dec 28 2006

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 *****

libshh said on Dec 25 2006

Nice! More screen estate! /me likes it! :) *****

2cv6 said on Dec 23 2006

i have 3 toolbars ... from top down ... menubar, url/search bar, bookmarks toolbar. the menubar reappears as soon as the cursor gets to the bookmarks toolbar which makes it difficult to work with. can the code be tweaked so that the menubar reappears when the cursor actually gets there but not before?