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!

Mozilla サポートの検索

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

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Why does the bookmark cutomize window NOT change to default settings or icon only when I click those settings and then done?

  • 1 件の返信
  • 2 人がこの問題に困っています
  • 21 回表示
  • 最後の返信者: cor-el

more options

I click on the customize window and select the "icons" button and the bookmark toolbar stays on "icons and text". I select the "restore default set" button and the bookmark toolbar still stays on "icons and text" even though the default setting is supposed to be "icons" only. There is not enough space on this toolbar for both icons and texts when you accumulate a lot of bookmarks.

I click on the customize window and select the "icons" button and the bookmark toolbar stays on "icons and text". I select the "restore default set" button and the bookmark toolbar still stays on "icons and text" even though the default setting is supposed to be "icons" only. There is not enough space on this toolbar for both icons and texts when you accumulate a lot of bookmarks.

すべての返信 (1)

more options

That setting only applies to the labels on toolbars and not to bookmarks on the Bookmarks Toolbar.

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

See also:

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

/* use this line to hide the icons */
#personal-bookmarks .bookmark-item > .toolbarbutton-icon { display:none !important; }

/* use this line to hide the label text */
#personal-bookmarks .bookmark-item > .toolbarbutton-text { display:none !important; }