SeaMonkey Mailnews FAQ

Last updated on February 5, 2006.

How do I change the colour of email addresses in the headers pane?

Add this script in your userChrome.css (See Editing Config Files):

.emailDisplayButton {
color: black !important;
}

The following script is for the colour that is displayed as you hover your mouse over it.

.emailDisplayButton:hover {
color: yellow !important;
}

Of course, you can change "black" to whatever colour you want; as well as add more style scripts.

Webmaster: Chris Ilias