hi,
How is it possible to change the color links [USER-UNSUBSCRIBE] by example ?
Thnaks.
hi,
How is it possible to change the color links [USER-UNSUBSCRIBE] by example ?
Thnaks.
You can add css rules in your newsletters. Something like:
<style type="text/css">
a:link,
a:visited,
a:active
{
color: #009900;
}
</style>
Or, better, instead of [USER-UNSUBSCRIBE] you can use [USER-UNSUBSCRIBE-URL] and inline css. This placeholder is only the url to unsubscribe page, so you have to write the text and the html, e.g.:
<a href="[USER-UNSUBSCRIBE-URL]" style="color:#f00">Click to unsubscribe</a>You must log in to post.