Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

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