SeaMonkey Mailnews FAQ
How do I remove structured words symbols?
userContent.css code:
.moz-txt-tag { display: none; }
If you only want to alter some types use:
*bold*:
.moz-txt-star > .moz-txt-tag { display: none; }
/italic/:
.moz-txt-slash > .moz-txt-tag { display: none; }
_underline_:
.moz-txt-underscore > .moz-txt-tag { display: none; }
-- (Signature):
.moz-txt-sig > .moz-txt-tag { display: none; }
|