Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Ulteriori informazioni

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

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

  • 2 risposte
  • 2 hanno questo problema
  • 1 visualizzazione
  • Ultima risposta di 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..

Soluzione scelta

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!

Leggere questa risposta nel contesto 👍 0

Tutte le risposte (2)

more options

Soluzione scelta

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