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

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

how do i get the toolbar to just show the icons, not the whole name of the site

  • 2 uphendule
  • 2 zinale nkinga
  • 2 views
  • Igcine ukuphendulwa ngu cor-el

more options

on the toolbar, I just want the icons of my favorites to show, not the whole name so I can add more to the toolbar..

on the toolbar, I just want the icons of my favorites to show, not the whole name so I can add more to the toolbar..

Isisombululo esikhethiwe

Hello, It seems that this problem should have a simple solution. All you need to do is...

  1. Right click a bookmark
  2. Click Edit
  3. Change the name of the site to " " (Just press the space bar)
  4. Repeat.

This will show the name as a space bar, eliminating the name entirely.

Thanks for contacting support!

Funda le mpendulo ngokuhambisana nalesi sihloko 👍 0

All Replies (2)

more options

Isisombululo Esikhethiwe

Hello, It seems that this problem should have a simple solution. All you need to do is...

  1. Right click a bookmark
  2. Click Edit
  3. Change the name of the site to " " (Just press the space bar)
  4. Repeat.

This will show the name as a space bar, eliminating the name entirely.

Thanks for contacting support!

more options

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


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

#PlacesToolbarItems > .bookmark-item:not([container]) > .toolbarbutton-text {
 display:none !important;
}

Note that this code leave the names for folders. You can leave out :not([container]) to hide those names as well


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 Notepad to create a (new) userChrome.css file in this folder (the names are case sensitive)
  • Paste the code in the userChrome.css file in the editor window and make sure that the userChrome.css file starts with the default @namespace line
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css. Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file