How to change the signature color in thunderbird?

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?

3 Answers

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 >Richard Holloway</p>

Or

<p >RICHARD</p>
1

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

0

Starting from Thunderbird 24, in Ubuntu/Mint Linux you have to do:

  1. mkdir ~/.thunderbird/chrome
  2. emacs ~/.thunderbird/chrome/userContent.css
  3. Add this to the file and save.moz-txt-sig, .moz-signature { opacity: inherit !important; }

  4. Add this code block to your HTML signature:

    <style><!-- .moz-txt-sig, .moz-signature { opacity: inherit !important; } --></style>

  5. Restart Thunderbird.

This technique will also prevent other Thunderbird users or e-mail clients from greying out (opacitating) your signature.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like