Patrick Gallagher wrote:
> Anthony Ewell wrote:
>
>>
>>
>> Neil wrote:
>>
>>> Anthony Ewell wrote:
>>>
>>>> When reading and sending HTML, is there a way to force Mozilla to
>>>> display bold as bold and not bracket it with asterisks ("*")?
>>>
>>>
>>>
>>>
>>> If you want Mozilla to hide the signature separators and the symbols
>>> around *bold* /italic/ _underlined_ and |code| words in plain text
>>> messages amend <profile>/chrome/userContent.css as follows:
>>>
>>> .moz-txt-tag { display: none; }
>>>
>>> If you only want to alter some types use
>>>
>>> .moz-txt-star > .moz-txt-tag { display: none; }
>>> .moz-txt-slash > .moz-txt-tag { display: none; }
>>> .moz-txt-underscore > .moz-txt-tag { display: none; }
>>> .moz-txt-verticalline > .moz-txt-tag { display: none; }
>>> .moz-txt-sig > .moz-txt-tag { display: none; }
>>>
>>
>> Thank you! :)
>>
>
> If you *hide* those /symbols/ ...
>
> do * / | and _ still show up in regular text?
>
> Patrick
>
nevermind... answered my own question :)
*MUCH* nicer without the symbols showing.
Patrick