搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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.