Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

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.

കൂടുതലറിയുക

How can I put tabs underneath the address bar?

  • 4 മറുപടികൾ
  • 2 have this problem
  • 6 കാഴ്ചകൾ
  • Last reply by cor-el

more options

It's been a number of versions since the Australis update, and tabs on top is still terrible. How can I fix this?

It's been a number of versions since the Australis update, and tabs on top is still terrible. How can I fix this?

എല്ലാ മറുപടികളും (4)

more options

Chosen Solution

more options

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
more options

I don't want to install an external add-on to deal with an internal design issue, but thank you.

more options

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:

  • 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