Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

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

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

  • 2 replies
  • 1 has this problem
  • 2 views
  • Last reply by 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

Chosen solution

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.

Read this answer in context 👍 0

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

Chosen Solution

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.