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

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

How do I disable favicons in the tabs?

  • 5 antwoorde
  • 4 hierdie probleem
  • 20 views
  • Laaste antwoord deur 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?

Gekose oplossing

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

Lees dié antwoord in konteks 👍 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

Gekose oplossing

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.