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

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

  • 1 phendula
  • 2 inale ngxaki
  • 28 views
  • Impendulo yokugqibela ngu 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.

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