Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

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; }