Removing the favicon from the bookmarks toolbar in Firefox

...

#396698

Stick this in user.js (create one if it's not there--it belongs in the same place as userChrome.css)

//* Disable Bookmark Icons
user_pref("browser.chrome.site_icons", false);
user_pref("browser.chrome.favicons", false);

Handy little site: http://forums.mozillazine.org/viewtopic.php?t=244616

-NC

#396768

...

#396917

Actually, this might work better, its from the link NC posted :D

Remove the lines you don't want icons to be removed from :)

It goes in your userChrome.css

/*****  Bookmark icons  *****/

/* Hide "normal" bookmark icons in the bookmarks menu */
menuitem.bookmark-item > .menu-iconic-left {
display: none; }

/* Hide bookmark icons in the Personal Toolbar */
toolbarbutton.bookmark-item > .toolbarbutton-icon {
display: none; }

/* Hide icons for bookmark folders in Bookmarks menu */
menu.bookmark-item > .menu-iconic-left {
display: none; }

/* Hide icons for bookmark groups in Bookmarks menu */
menuitem.bookmark-group > .menu-iconic-left {
display: none; }

#398385