Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Mësoni Më Tepër

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

  • 2 përgjigje
  • 2 e kanë hasur këtë problem
  • 1 parje
  • Përgjigjja më e re nga 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..

Zgjidhje e zgjedhur

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!

Lexojeni këtë përgjigje brenda kontekstit 👍 0

Krejt Përgjigjet (2)

more options

Zgjidhja e Zgjedhur

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