There is a way via userChrome.css
styling. Not that pretty, but it works.
You can try the following steps:
- Navigate to
about:support
- Open your Profile Directory
- Create a folder named
chrome
, if it do not exists - Create a file
userChrome.css
- Open
about:config
- Change
toolkit.legacyUserProfileCustomizations.stylesheets
totrue
- Close FireFox
- Paste this into the
userChrome.css
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#browser {
-moz-box-ordinal-group: 0 !important;
padding-top: 1px;
}
#nav-bar[inFullscreen],
#TabsToolbar[inFullscreen] {
display: none;
}
- Start Firefox and Voila!