Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

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

  • 2 odpovědi
  • 2 mají tento problém
  • 1 zobrazení
  • Poslední odpověď od 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..

Zvolené řešení

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!

Přečíst dotaz v kontextu 👍 0

Všechny odpovědi (2)

more options

Zvolené řešení

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