Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Learn More

How to hide tab icons/favicons for specific websites?

  • 1 odpowiedź
  • 0 osób ma ten problem
  • 1 wyświetlenie
  • Ostatnia odpowiedź od cor-el

more options

Hello,

I am wondering how to remove the web icons/favicon from tabs (and windows if possible) for specific websites, but not all websites. I know you can hide all favicons using 'userChrome.css' and the code:

.tabbrowser-tab .tab-icon-image { display: none !important; }

Is there any way to configure this to block just a site like Wikipedia, without blocking everything else?

Thanks.

Hello, I am wondering how to remove the web icons/favicon from tabs (and windows if possible) for specific websites, but not all websites. I know you can hide all favicons using 'userChrome.css' and the code: .tabbrowser-tab .tab-icon-image { display: none !important; } Is there any way to configure this to block just a site like Wikipedia, without blocking everything else? Thanks.

Wszystkie odpowiedzi (1)

more options

You can hide the favicon using a label selector, like for Wikipedia where the label ends with the site name (the 'i' is for case insensitive):

.tabbrowser-tab[label$="wikipedia" i] .tab-icon-image {display:none!important;}

Pomocne?

Zadaj pytanie

Aby odpowiadać na posty, musisz zalogować się na swoje konto. Zadaj pytanie, jeśli nie masz jeszcze konta.