How to get tabs in adressbar, if the parameter 'browser.tabs.onTop' to 'false' does not work?

I know that firefox once put the tabs on the top, but I got that fixed with setting in "subject: config" the value of 'browser.tabs.onTop' to 'false '.
Now, after upgrading Firefox to v.29, that this entry is always set to false, however, can't do the tabs below the adressbar (which is super annoying).
Any ideas how to solve this problem?

Note that you can also do this easily with the code to userChrome.css that basically, you just give to the tab bar a higher value of - moz-box-ordinal-group (most toolbars have a default value 1 to show them in the order of DOM).

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

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

#TabsToolbar {
	-moz-box-ordinal-group: 10000 !important;
}

The file userChrome.css (UI) customization and userContent.css (Web sites) are located in the chrome folder in the Firefox profile folder.

Tags: Firefox

Similar Questions

Maybe you are looking for