Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How do I get the navigation/address bar in the "about" pages?

more options

My title describes it. If possible, I'd like to have the navigation /address bar in about:addons, about:preferences etc. pages. If anybody has an idea, I'd love for you to post back. :-)

(Fx 27 on Windows 8.1 x64)

My title describes it. If possible, I'd like to have the navigation /address bar in about:addons, about:preferences etc. pages. If anybody has an idea, I'd love for you to post back. :-) (Fx 27 on Windows 8.1 x64)

Chosen solution

Firefox shows the Navigation Toolbar for me on Linux when tabs are not on top (i.e. browser.tabs.onTop pref = false).
Current Firefox versions only show the "Tabs on Top" menu entry in the "View > Toolbars" and "Firefox > Options" menu and in toolbar context menus if the tabs aren't in the default position on top.

Note that this pref will no longer have effect once the Australis code lands on the release channel (the Australis code is currently only on the Nightly update channel in the current 29.0a1 version).


Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#nav-bar:not([collapsed="true"]){ visibility: visible !important; }
Read this answer in context 👍 1

All Replies (2)

more options

Chosen Solution

Firefox shows the Navigation Toolbar for me on Linux when tabs are not on top (i.e. browser.tabs.onTop pref = false).
Current Firefox versions only show the "Tabs on Top" menu entry in the "View > Toolbars" and "Firefox > Options" menu and in toolbar context menus if the tabs aren't in the default position on top.

Note that this pref will no longer have effect once the Australis code lands on the release channel (the Australis code is currently only on the Nightly update channel in the current 29.0a1 version).


Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#nav-bar:not([collapsed="true"]){ visibility: visible !important; }

Modified by cor-el

more options

Indeed you're right. That works on Windows as well. Thanks, it can be a work around for now, but if my mind is not playing tricks with me, I distinctly remember making it happen even with tabs on top and then reverting to the default no-nav-bar scenario just a few weeks back.

My Googling skills are deceiving me for now, but let's see if somebody has any other other ideas before marking this as solved.

Cheers :-)

EDIT: Installing the "Always Awesome Bar" add-on is an way of doing it as well, but I was hoping for an about:config tweak (change or addition).

Modified by ViewFromTheTop