Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

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

  • 2 отговора
  • 2 имат този проблем
  • 1 изглед
  • Последен отговор от 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..

Избрано решение

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!

Прочетете този отговор в контекста 👍 0

Всички отговори (2)

more options

Избрано решение

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