为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Tabs on Bottom Release 89.0

  • 3 个回答
  • 1 人有此问题
  • 3 次查看
  • 最后回复者为 Paul

more options

Hello, all.

This is not a question but a pointer for those who have successfully been using userChrome.css to put the tabs where they belong, below the Bookmarks bar. :-)

If you used a userChrome.css solution such as that presented in threads like the support article "tabs on bottom release 72.0.1" (full disclosure, that is my solution), then you just need to add to the #TabsToolbar section one line:

top: var(--uc-titlebar-padding,86px);

You can play with the "86px" until you have the tabs where you like them. Depending upon my profile and other CSS options, I have to move that a few pixels up or down to get it looking just right.

Hello, all. This is not a question but a pointer for those who have successfully been using userChrome.css to put the tabs where they belong, below the Bookmarks bar. :-) If you used a userChrome.css solution such as that presented in threads like [[tabs on bottom release 72.0.1|the support article "tabs on bottom release 72.0.1"]] (full disclosure, that is my solution), then you just need to add to the '''#TabsToolbar''' section one line: top: var(--uc-titlebar-padding,86px); You can play with the "86px" until you have the tabs where you like them. Depending upon my profile and other CSS options, I have to move that a few pixels up or down to get it looking just right.

被采纳的解决方案

Me, again!

You can use just this in the #TabsToolbar section:

top: 86px !important;

The "var" part was for some other calculations; it is not needed, here, if you know exactly where you want the tabs to appear.

If you want the tabs position to be more dynamic, you can get fancy and calculate how far from the top to put the tabs. For example, if you like to turn your Bookmarks Toolbar on and off, you might not want your tabs suddenly intruding on your web page.

定位到答案原位置 👍 0

所有回复 (3)

more options

Sorry about the link, above. It should be this support article .

more options

选择的解决方案

Me, again!

You can use just this in the #TabsToolbar section:

top: 86px !important;

The "var" part was for some other calculations; it is not needed, here, if you know exactly where you want the tabs to appear.

If you want the tabs position to be more dynamic, you can get fancy and calculate how far from the top to put the tabs. For example, if you like to turn your Bookmarks Toolbar on and off, you might not want your tabs suddenly intruding on your web page.

more options

Thank you for your feedback.