Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Este site irá ter funcionalidade limitada enquanto fazemos manutenção para melhorar a sua experiência. Se um artigo não resolve o seu problema e quiser colocar uma questão, temos a nossa comunidade de apoio à espera de o ajudar em @FirefoxSupport no Twitter, /r/firefox no Reddit.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

How do I turn off favicons in the toolbar?

  • 2 respostas
  • 1 tem este problema
  • 1 visualização
  • Última resposta por 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?

Todas as respostas (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.