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

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

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 uphendule
  • 2 zinale nkinga
  • 10 views
  • Igcine ukuphendulwa ngu 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)

Okulungisiwe ngu 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;
}