我发现 Thunderbird 中的 HTML 签名会显示为灰色。即使我的签名不是灰色,也会显示默认的灰色。如何解决这个问题?
答案1
您可以通过勾选签名文本框中的“使用 HTML”复选框来编辑 HTML 中的签名。
然后在签名框中输入类似
<p style="color:red;" >Richard Holloway</p>
或者
<p style="color:#000000;" >RICHARD</p>
答案2
另一个答案对我不起作用。Thunderbird 无论如何都会以灰色显示签名,即使电子邮件已发送(起初我以为只是在编辑阶段)。
1)在 ~/.mozilla-thunderbird 中找到您的配置文件夹(它是一个隐藏文件夹)
2)在其中创建一个名为“chrome”的文件夹
3)在“chrome”文件夹中创建一个名为“userContent.css”的空文件
4)在文本编辑器中编辑“userContent.css”并添加以下行:
/*
* 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)重启雷鸟
答案3
从...开始雷鸟 24,在 Ubuntu/Mint Linux 中你必须执行以下操作:
mkdir ~/.thunderbird/chrome
emacs ~/.thunderbird/chrome/userContent.css
将其添加到文件并保存
.moz-txt-sig, .moz-signature { opacity: inherit !important; }
将此代码块添加到您的 HTML 签名中:
<style><!-- .moz-txt-sig, .moz-signature { opacity: inherit !important; } --></style>
重新启动 Thunderbird。
此技术还可以阻止其他 Thunderbird 用户或电子邮件客户端将您的签名变灰(不透明)。