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

Cuireadh an snáithe seo sa chartlann. Cuir ceist nua má tá cabhair uait.

How do I turn off favicons in the toolbar?

  • 2 fhreagra
  • 1 leis an bhfadhb seo
  • 1 view
  • Freagra is déanaí ó martyb66

more options

I have convenient links in the toolbar. Having favicons is a waste of space. How can I remove them or turn them off? Plus, can I move the tabs below the toolbar rather than have them at the top of the window?

I have convenient links in the toolbar. Having favicons is a waste of space. How can I remove them or turn them off? Plus, can I move the tabs below the toolbar rather than have them at the top of the window?

All Replies (2)

more options

Do you mean the favicons of the bookmarks on the Bookmarks Toolbar?

You can achieve both of those with code in the userChrome.css file.

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* hide the favicons on the Bookmarks Toolbar items */
#personal-bookmarks .bookmark-item > .toolbarbutton-icon { display:none !important; }

/* move the Tab bar to the lower position */
#TabsToolbar { -moz-box-ordinal-group:10000 !important; }


The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the currently used Firefox profile folder:

  • Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)

You can look at the Classic Theme Restorer extension to restore some functionality that was lost with the arrival of the Australis style in Firefox 29.

You can check the settings of the CTR extension via its Options/Preferences button on the "Firefox/Tools > Add-ons > Extensions" page.


See also:

more options

Thanks for your help cor-el. I know a bit about code, but this is more than I want to tackle just to get rid of the favicons. I'll live with it and try it when I have nothing else to do.