On 05/03/2014 10:57 AM, Ralf Mardorf wrote:
Hi,
does somebody know where I can select the page style in Firefox 29.0? If a page does use grey text on black background, I want to turn off the page's style, to get black text on white background. I guess there's no way to get back the menu bar, or is it possible? I haven't seen such an option in the preferences and Internet research was without success.
Regards, Ralf
Preferences > Content > Colors will give you basic control. If you want more control, you can create your own user stylesheet. In your Firefox profile directory (usually ~/.mozilla/firefox/????????.default) Create chrome/userContent.css and add your own style rules [1]. The following rule will override all website styles and force a white background with black text. body { background: white !important; color: black !important; } If you want even more control, I suppose you can play around with Greasemonkey scripts. --Kyle [1] http://kb.mozillazine.org/UserContent.css