Sunday 25 March 2012

create links in email marketing

email link html | email link code | email link subject | email link body | email link flash
create Links in email is easy, but it need html knowledge.

Some email clients will overwrite your link colors with their defaults, and you can avoid this by taking two steps. First, set a default color for each link inline like so:

    <a href="http://yoursite.com/" style="color:#ff00ff">your target links</a>

Next, add a redundant span inside the a tag.

    <a href="http://yoursite.com/" style="color:#ff00ff"><span style="color:#ff00ff">target links</span></a>

To some this may be overkill, but if link color is important to your design then a superfluous span is the best way to achieve consistency.

No comments:

Post a Comment