Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

How do I disable favicons in the tabs?

  • 5 uphendule
  • 4 zinale nkinga
  • 144 views
  • Igcine ukuphendulwa ngu 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?

Isisombululo esikhethiwe

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

Funda le mpendulo ngokuhambisana nalesi sihloko 👍 1

All Replies (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

Isisombululo Esikhethiwe

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