Hyperlink doesn't look quite nice

Rudi

New Member
Hyperlink problem
If I make a hyperlink like
<a href="http://www.tagesschau.de/">ARD Tagesschau</a>
and look at the preview, I think i looks quite correct. But if I get the newsletter I find the line

ARD Tagesschau <http://www.tagesschau.de/>

What could be wrong?
 

stanbusk

Administrator
Staff member
This an Entourage bug. When the HTML is very simple it strips the HTML tags rather than rendering it. A workaround is to embed the text in a table. Place this code on very first line:

<table width="600" border="0"><tr><td>

and on very last line:

</td></tr></table>

You can modify the '600' width.
 
Top