Eheka Pytyvõha

Emboyke pytyvõha apovai. Ndorojeruremo’ãi ehenói térã eñe’ẽmondóvo pumbyrýpe ha emoherakuãvo marandu nemba’etéva. Emombe’u tembiapo imarãkuaáva ko “Marandu iñañáva” rupive.

Kuaave

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 Mbohovái
  • 2 oguereko ko apañuãi
  • 12 Hecha
  • Mbohovái ipaháva 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

Opaite Mbohovái (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)

Moambuepyre McCoy rupive

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