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

Change titlebar font

  • 1 odpowiedź
  • 2 osoby mają ten problem
  • 15 wyświetleń
  • Ostatnia odpowiedź od cor-el

more options

Using FF5 I want to change titlebar font color and remove the shadow, tried to do this with userchrome.css, but it doesn't do anything Tried this code:

/* Change title color and remove shadow */

  1. personal-titlebar tabs tab,
  2. personal-titlebar toolbarbutton,
  3. personal-titlebar toolbaritem > label,
  4. personal-titlebar menubar > menu {

text-shadow: none !important; color: #000 !important; }

Using FF5 I want to change titlebar font color and remove the shadow, tried to do this with userchrome.css, but it doesn't do anything Tried this code: /* Change title color and remove shadow */ #personal-titlebar tabs tab, #personal-titlebar toolbarbutton, #personal-titlebar toolbaritem > label, #personal-titlebar menubar > menu { text-shadow: none !important; color: #000 !important; }

Wszystkie odpowiedzi (1)

more options

Do you have the Personal Titlebar extension installed?

I'm using this code:

#personal-titlebar[textcolor="true"] toolbarbutton > label,
#personal-titlebar[textcolor="true"] toolbaritem > label,
#personal-titlebar[textcolor="true"] menubar > menu {
 color:#000!important;
 text-shadow:none!important;
}

#personal-titlebar[textcolor="true"] menubar .menubar-text{font-size:10pt}
#personal-titlebar[textcolor="true"] {background-color:-moz-dialog!important;font-size:11pt}
#personal-titlebar[textcolor="true"] toolbaritem > label {
 color:#000!important;
 text-shadow: 1px 1px 2px #eee, 0pt 0pt 3px #888, 0pt 0pt 3px #888 !important;
}