Ky sajt do të funksionojë me kufizime, teksa bëjmë mirëmbajtjen e tij për të përmirësuar punën tuaj. Nëse një artikull nuk e zgjidh problemin tuaj dhe dëshironi të bëni një pyetje, kemi bashkësinë tonë të asistencës, e gatshme për t’ju ndihmuar, te @FirefoxSupport në Twitter dhe/r/firefox në Reddit.

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 disable favicons in the tabs?

  • 5 përgjigje
  • 4 e kanë hasur këtë problem
  • 20 parje
  • Përgjigjja më e re nga cor-el

more options

I just upgraded to Firefox 4 in MAC and now the tabs have favicons on them. How do I remove them?

I just upgraded to Firefox 4 in MAC and now the tabs have favicons on them. How do I remove them?

Zgjidhje e zgjedhur

I use code in userChrome.css to achieve that. What the Bookmarks Deiconizer extension does can also be done with code in userChrome.css by the way.

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


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

/* Tabs: no icons */
.tabbrowser-tabs .tab-icon-image { display: none !important; }

/* Bookmarks Toolbar: no icons */
#personal-bookmarks .toolbarbutton-icon { display: none !important; }

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

Krejt Përgjigjet (5)

more options

You can look at this extension:

more options

Thanks. But that removes them from the bookmarks toolbar. I want to remove them from the tabs.

more options

Zgjidhja e Zgjedhur

I use code in userChrome.css to achieve that. What the Bookmarks Deiconizer extension does can also be done with code in userChrome.css by the way.

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


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

/* Tabs: no icons */
.tabbrowser-tabs .tab-icon-image { display: none !important; }

/* Bookmarks Toolbar: no icons */
#personal-bookmarks .toolbarbutton-icon { display: none !important; }

more options

Perfect! Thank you.