Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

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.

Learn More

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 replies
  • 2 have this problem
  • 12 views
  • Last reply by 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

All Replies (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)

Modified by 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;
}