Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I have seen that HTML signature in thunderbird will be shown as grey color. Even though my signature is not in grey color the default grey color will be shown. How to resolve this issue?

share|improve this question

2 Answers

up vote 2 down vote accepted

You can edit the signature in HTML by ticking the "use HTML" checkbox in the Signature Text box.

Then in the signature box type something like

<p style="color:red;" >Richard Holloway</p>

Or

<p style="color:#000000;" >RICHARD</p>
share|improve this answer

The other answer didn't work for me. Thunderbird displays the signature in grey regardless, even when the email is sent out (at first i thought it was just at the editing stage).

1) find your profile folder in ~/.mozilla-thunderbird (it is a hidden folder)

2) create a folder called "chrome" inside of it

3) inside the "chrome" folder create an empty file called "userContent.css"

4) edit "userContent.css" in a text editor and add these lines:

/*
 * Change display color of text and links in signature
 */
.moz-txt-sig, .moz-signature {
  color: black !important;
}
.moz-txt-sig > a, .moz-signature > a {
  color: blue !important;
} 

5) restart thunderbird

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.