Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

How do I turn off favicons in the toolbar?

  • 2 ответа
  • 1 имеет эту проблему
  • 1 просмотр
  • Последний ответ от 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?

Все ответы (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.