搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

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 有這個問題
  • 22 次檢視
  • 最近回覆由 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; }