Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

how do I switch off the Menu Bar font shadowing in a theme

  • 3 antwoorden
  • 2 hebben dit probleem
  • 5 weergaven
  • Laatste antwoord van cor-el

more options

The themes I am used to using have now (Firefox 33.0 Linux) black font with shadowing. How can I turn off the shadowing? Using the Theme Font Size addon does not give me the options I need. I don't really want to change themes to something else.

The themes I am used to using have now (Firefox 33.0 Linux) black font with shadowing. How can I turn off the shadowing? Using the Theme Font Size addon does not give me the options I need. I don't really want to change themes to something else.

Alle antwoorden (3)

more options

Is that happening when you use a lightweight theme (Persona)?

You can try to edit the textcolor and possibly the accentcolor of the theme(s) as stored in the lightweightThemes.usedThemes pref.


The colors of the currently selected Persona are stored as the first entry in the lightweightThemes.usedThemes pref as textcolor and accentcolor. The data of other installed Personas are stores in following records in this pref in JSON format (backslashes are escaped as \"). You can edit that pref and set another value for the "textcolor":"#ffffff" part (e.g. "textcolor":"#000000").

You can open the about:config page via the location/address bar. You can accept the warning and click "I'll be careful" to continue.

more options

You can try changing/creating the userChrome.css and set the font for the menubar to your liking. The following articles contains more information.

For example, yours can use:


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

/*change size, color, style of text in Menu Bar */ menubar > menu {color: black !important}


Alternatively, you can create your own style using the Stylish extension:

Be sure to restart Firefox to see your changes.

more options

You can also add a rule to disable the text-shadow in addition to setting the (text) color.

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

#navigator-toolbox .menubar-text { text-shadow: none !important; }