Frank Klein wrote:
> Hi,
>
> I just started using Mozilla 1.1b, the newest build possible, and while I like
> it, there is one thing that is really bugging me.
>
> When I reply to a plain-text email, the quoted plain text appears in bright
> blue. With my Windows colors, that is hard to see, and it is hard on my eyes.
> Changing the color of the Preferences/Mail & Newsgroups/Message display has
> no effect; it only works for reading mail, not the compose window.
>
> I looked through the classic skin .CSS files, but I could find no reference to
> it. Does anyone know where the user-pref for this is, or how I might be able
> to override that by inserting code into the theme file?
Create a userContent.css in your profile's chrome folder and add the
following line:
span[_moz_quote=true] {
color: green !important;
}
where "green" is an example for the color you want the quoted plaintext
to be in.
- Holger