搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Move tabs below bookmarks

  • 5 回覆
  • 1 有這個問題
  • 9 次檢視
  • 最近回覆由 cor-el

more options

Just updated to 62.0, ugh. Lost my custom icons and toolbar order. Have tried all the suggestions for moving tabs below bookmarks. Nothing seems to work, including various userchrome.css scripts mentioned in relevant support posts. Anyone have a script/procedure for moving tabs below bookmarks that specifically works for 62.0 (64bit)?

Just updated to 62.0, ugh. Lost my custom icons and toolbar order. Have tried all the suggestions for moving tabs below bookmarks. Nothing seems to work, including various userchrome.css scripts mentioned in relevant support posts. Anyone have a script/procedure for moving tabs below bookmarks that specifically works for 62.0 (64bit)?

所有回覆 (5)

more options
more options

Yes, several scripts listed here and elsewhere. Nothing worked.

more options

Did you try other code in userChrome.css in case there is a problem with the file?

I personally use this code: 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 */

/* tabs on bottom */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
#TabsToolbar {-moz-box-ordinal-group:1000!important}

It is not that difficult to create userChrome.css if you have never used it.

The first step is to open the "Help -> Troubleshooting Information" page and find the button to access the profile folder.

You can find this button under the "Application Basics" section as "Profile Folder -> Open Folder". If you click this button then you open the profile folder in the Windows File Explorer. You need to create a folder with the name chrome in this folder (name is all lowercase). In the chrome folder you need to create a text file with the name userChrome.css (name is case sensitive). In this userChrome.css text file you paste the text posted.

In Windows saving the file is usually the only time things get more complicated because Windows can silently add a .txt file extension and you end up with a file named userChrome.css.txt. To avoid this you need to make sure to select "All files" in the dialog to save the file in the text editor using "Save File as".

You need to close and restart Firefox when you create or modify the userChrome.css file.

more options

Used the script above in userChrome.css within folder "chrome" within profile folder and was careful to save as 'all files'. Still tabs on top.

more options

Does code like this in the file to set the font-size in the location bar work?

#urlbar .textbox-input-box {font-size: 14pt !important; font-family: monospace !important}