Join the Mozilla’s Test Days event from Dec 2–8 to test the new Firefox address bar on Firefox Beta 134 and get a chance to win Mozilla swag vouchers! 🎁

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

How do I edit the maximum width of the bookmarks to see more characters?

  • 5 Antworten
  • 6 haben dieses Problem
  • 64 Aufrufe
  • Letzte Antwort von MourneProof

more options

I have many bookmarks with more characters than FF can display. So I want to make the width of the Bookmark menus wider.

I have many bookmarks with more characters than FF can display. So I want to make the width of the Bookmark menus wider.

Ausgewählte Lösung

Use the selector #personal-bookmarks:

#personal-bookmarks .bookmark-item,
#bookmarksMenuPopup .bookmark-item { max-width: none !important; }
Diese Antwort im Kontext lesen 👍 0

Alle Antworten (5)

more options

You can set the max-width to none or specify a maximum (400px) with code in userChrome.css in the chrome folder in the Firefox Profile Folder to see more characters.
See http://kb.mozillazine.org/Editing_configuration

Add this code to userChrome.css below the @namespace line.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#bookmarksMenuPopup .bookmark-item { max-width: none !important; }

more options

Hi cor-el,

thanks for you reply. I tried your suggestion, but I did not recognized a huge change. Is 400px really the maximum? For now I'm using a workaround to open "chrome://browser/content/bookmarks/bookmarksPanel.xul" in a new tab, but this is not as comfortable as I wish.

more options

Hi again,

I recognized that the solution from cor-el worked fine for the Bookmark-Menu but not for the bookmark-toolbar.

Does anybody know which item to modify to apply the width to the bookmark-toolbar?

more options

Ausgewählte Lösung

Use the selector #personal-bookmarks:

#personal-bookmarks .bookmark-item,
#bookmarksMenuPopup .bookmark-item { max-width: none !important; }
more options

Hi cor-el

thank you very much for you help. It works fine and now FF really matches my needs!!!