How do I disable favicons in the tabs?
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.
- http://kb.mozillazine.org/userChrome.css
- http://kb.mozillazine.org/Editing_configuration
- ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html
@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)
You can look at this extension:
- Bookmarks Deiconizer: https://addons.mozilla.org/firefox/addon/bookmarks-deiconizer/
Thanks. But that removes them from the bookmarks toolbar. I want to remove them from the tabs.
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.
- http://kb.mozillazine.org/userChrome.css
- http://kb.mozillazine.org/Editing_configuration
- ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html
@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; }
Perfect! Thank you.
You're welcome