ENGLISH | 한국어
This userChrome.css snippet provides a feature to automatically hide the address bar and title bar in Firefox browser. The elements appear when you move your mouse to the top, and automatically hide when you move your mouse elsewhere.
- Auto-hide address bar and title bar
- Show elements on mouse hover
- Smooth transition effect
- Open
about:configin Firefox settings and settoolkit.legacyUserProfileCustomizations.stylesheetstotrue. - Find your Firefox profile folder (refer to "Profile Folder" in
about:support). - Create a
chromefolder in the profile folder (if it doesn't exist). - Create a
userChrome.cssfile inside thechromefolder and paste the following code:
#navigator-toolbox:not(:hover) > #titlebar,
#navigator-toolbox:has(#PersonalToolbar:hover) > #titlebar,
#navigator-toolbox:not(:hover) > #nav-bar,
#navigator-toolbox:has(#PersonalToolbar:hover) > #nav-bar {
margin-top: -36px;
opacity: 0;
}
#titlebar, #nav-bar {
transition: all 0.3s ease-in-out !important;
}- Restart Firefox.
- Adjust the
-36pxvalue to change the degree of hiding. - Adjust the
0.3svalue to change the transition speed.
This CSS snippet is based on the latest version of Firefox. Future Firefox updates may affect its functionality.
If the address bar is not visible, move your mouse to the top of the browser. If the problem persists, try "Refresh Firefox" in about:support.