Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

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 antwoorden
  • 2 hebben dit probleem
  • 12 weergaven
  • Laatste antwoord van 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

Alle antwoorden (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)

Bewerkt door McCoy op

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