
How can I put tabs underneath the address bar?
It's been a number of versions since the Australis update, and tabs on top is still terrible. How can I fix this?
Chosen solution
How to make the new Firefox look like the old Firefox can help you with that
Read this answer in context 👍 0എല്ലാ മറുപടികളും (4)
Chosen Solution
How to make the new Firefox look like the old Firefox can help you with that
You can also look at the userChrome.css solution I posted in this thread:
- [/questions/1049464] Bookmarks toolbar POSITION resets to the very top after closing firefox
I don't want to install an external add-on to deal with an internal design issue, but thank you.
If you do not want to use an extension then you can achieve this with code in userChrome.css, see my reply in the thread I posted above.
Add code to the userChrome.css file below the default @namespace line.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) { -moz-box-ordinal-group:10; } #TabsToolbar { -moz-box-ordinal-group:1000!important; }
The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
You can use this button to go to the currently used Firefox profile folder:
- Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
- http://kb.mozillazine.org/Profile_folder_-_Firefox
- Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
- Use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
- Paste the code in the userChrome.css file in the editor window
- Make sure that the userChrome.css file starts with the default @namespace line
- Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.
Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file