Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

搜索 | 用户支持

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

详细了解

Hi, can I have more than one row of bookmarks show up on my browser, instead of having to click the dropdown arrow on the top right of the bookmarks row? Thanks

  • 2 个回答
  • 2 人有此问题
  • 12 次查看
  • 最后回复者为 cor-el

more options

Hi, can I have more than one row of bookmarks show up on my browser, instead of having to click the dropdown arrow on the top right of the bookmarks row? Thanks

Hi, can I have more than one row of bookmarks show up on my browser, instead of having to click the dropdown arrow on the top right of the bookmarks row? Thanks

所有回复 (2)

more options

mitchrandall said

Hi, can I have more than one row of bookmarks show up on my browser, instead of having to click the dropdown arrow on the top right of the bookmarks row? Thanks

Hello mitchrandall,

There used to be an add-on that would make it possible; unfortunately with the emphasis on "used to".... :(

You would now have to use CSS code, as mentioned in this thread :

https://support.mozilla.org/en-US/questions/1253700

Although chances are that this particular code won't work anymore, as it seems to change with just about every update.

You could give it a try though .....

(edit : typo)

由McCoy于修改

more options

You can possibly use this code in userChrome.css.

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

See:


/* Multi-Row Bookmarks Toolbar */
#PersonalToolbar {
  /* Override max-height */
  min-height: unset !important;
  max-height: unset !important;
}

#PersonalToolbar #PlacesToolbarItems {
  /* Override hiding */
  overflow-x: visible !important;
  overflow-y: visible !important;
  display: inline-block !important;
  padding-bottom: 1px;
}

#PersonalToolbar #PlacesToolbarItems .bookmark-item {
  /* Reduce padding to fit rows closer together */
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}