Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

How do I disable favicons in the tabs?

  • 5 Antworten
  • 4 haben dieses Problem
  • 116 Aufrufe
  • Letzte Antwort von 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?

Ausgewählte Lösung

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

Diese Antwort im Kontext lesen 👍 1

Alle Antworten (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

Ausgewählte Lösung

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