Basic question here...trying to figure out how to format links with fonts and colors and make them clickable. I was able to get the fonts and colors to look the way I wanted them to when I used this code, but I wasn't able to make the clickable:
<table border="0" cellpadding="1" cellspacing="1" style="width:500px;">
<tbody>
<tr>
<td colspan="2" style="font-size: 12px; font-family: Arial, sans-serif color: #888888; text-align: center; background-color: rgb(245, 245, 245);"><a conversion="true" href="${1://SurveyURL}" style="font-family: Arial, sans-serif; color:#888888; text-decoration: underline" target="_blank">What do you think?</a></td>
</tr>
<tr>
But I can make the links clickable, but not get the formatting I want if I use the following code:
<table border="0" cellpadding="1" cellspacing="1" style="width:500px;">
<tbody>
<tr>
<td colspan="2" style="font-size: 12px; font-family: Arial, sans-serif color: #888888; text-align: center; background-color: rgb(245, 245, 245);"><span style="color:#888888;">${l://SurveyLink?d=What%20do%20you%20think?}</span></td>
</tr>
What am I missing to get my formatting to work and also make the link clickable to the survey? (SurveyURL and SurveyLink actually use the same reference FYI) Thanks.