in this HTML tag I would like to have the word "or" not highlighted.

how can you do this?

<p>To ensure that you continue receiving our emails, <a href="mailto: my@email.com">please add us to your address book or safe list.</a>
link|improve this question

76% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Why complicate things, use two mailto links.

 To ensure that you continue receiving our emails, 
 <a href="mailto: my@email.com">please add us to your address book</a>
 or 
 <a href="mailto: my@email.com">safe list.</a>
link|improve this answer
ok now i see it. thanks for the input ;-) – tintincutes Aug 4 '10 at 8:28
feedback

Normal text will never be highlighted if you don't markup accordingly. So you need to markup all parts of the sentence to get highlighted.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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