搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Less and less customization?

  • 5 个回答
  • 2 人有此问题
  • 3 次查看
  • 最后回复者为 Adon123

more options
  • PLEASE* let everyone put the tabs where they want. Top/bottom/middle/etc.

Ugh. Is it REALLY that hard to write code that positions them were the user likes?

FireFox used to be what the *USER* wanted.

Now it's only "what dev staff wants".

Everything needs a special (buggy) plug-in, just to do the basics, now.

*PLEASE* let everyone put the tabs where they want. Top/bottom/middle/etc. Ugh. Is it REALLY that hard to write code that positions them were the user likes? FireFox used to be what the *USER* wanted. Now it's only "what dev staff wants". Everything needs a special (buggy) plug-in, just to do the basics, now.

被采纳的解决方案

Hello,

Firefox is so flexible that extensions can implement big UI changes like moving the tab strip. Try installing the Tabs On Bottom extension which is fairly basic and therefore shouldn't be buggy.

定位到答案原位置 👍 0

所有回复 (5)

more options

选择的解决方案

Hello,

Firefox is so flexible that extensions can implement big UI changes like moving the tab strip. Try installing the Tabs On Bottom extension which is fairly basic and therefore shouldn't be buggy.

more options

You can easily move the Tab bar to the lower position with code in userChrome.css as basically you only need to give the Tab bar a higher -moz-box-ordinal-group value (most toolbars have a default -moz-box-ordinal-group:1 to show them in DOM order).

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 */

#TabsToolbar{-moz-box-ordinal-group:10000!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)

由cor-el于修改

more options

pre 29 It used to be easy to have the adressbar next to the menu and put some buttons around it. (see atttachment)

Is it possible to have the old behaviour back? or what do I have to do to get it back as I had it?

more options

You can look at the Classic Theme Restorer extension to restore some functionality that was lost with the arrival of the Australis style in Firefox 29 and have the items on the Navigation Toolbar customizable.

You can check the settings of the CTR extension via its Options/Preferences button on the "Firefox/Tools > Add-ons > Extensions" page.


See also:

more options

Thank you! The extension is what I needed. With it I got it back to how I had it.