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

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

  • 5 replies
  • 6 have this problem
  • 44 views
  • Last reply by 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.

Chosen solution

Use the selector #personal-bookmarks:

#personal-bookmarks .bookmark-item,
#bookmarksMenuPopup .bookmark-item { max-width: none !important; }
Read this answer in context 👍 0

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

Chosen Solution

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!!!