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

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

Learn More

How do you remove icons from tool bar and just leave the text?

  • 2 ответа
  • 1 имеет эту проблему
  • 1 просмотр
  • Последний ответ от cor-el

more options

In previous versions of 'Firefox' you had the option of - either 'text only' or 'text and icons' in the tool bar.

In the latest version 32.0.2, that options is no longer available, you get both icons and text. This just clutters the tool bar and restricts the number of Quick access urls.

I just want 'Text' only.

Thanks,

John O

In previous versions of 'Firefox' you had the option of - either 'text only' or 'text and icons' in the tool bar. In the latest version 32.0.2, that options is no longer available, you get both icons and text. This just clutters the tool bar and restricts the number of Quick access urls. I just want 'Text' only. Thanks, John O

Выбранное решение

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


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

#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon { display:none !important; }


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

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like TextEdit to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userChrome.css file in the editor window
  • Make sure that the userChrome.css file starts with the default @namespace line

Make sure to save the file as plain text and not as rich text.

Прочитайте этот ответ в контексте 👍 0

Все ответы (2)

more options

Sorry, Text only and Icons & Text isn't an option as of Firefox 29.

You'll need an extension like this - https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/ - to "restore" that feature.

more options

Выбранное решение

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


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

#PlacesToolbarItems > .bookmark-item > .toolbarbutton-icon { display:none !important; }


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

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like TextEdit to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userChrome.css file in the editor window
  • Make sure that the userChrome.css file starts with the default @namespace line

Make sure to save the file as plain text and not as rich text.