Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Learn More

How do I disable favicons in the tabs?

  • 5 svar
  • 4 har detta problem
  • 19 visningar
  • Senaste svar av 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?

Vald lösning

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; }

Läs svaret i sitt sammanhang 👍 1

Alla svar (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

Vald lösning

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.

more options

You're welcome