为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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

  • 5 个回答
  • 6 人有此问题
  • 64 次查看
  • 最后回复者为 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.

被采纳的解决方案

Use the selector #personal-bookmarks:

#personal-bookmarks .bookmark-item,
#bookmarksMenuPopup .bookmark-item { max-width: none !important; }
定位到答案原位置 👍 0

所有回复 (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

选择的解决方案

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