I have a question about formatting links with fonts and colors to make them clickable. I managed to achieve the desired font and color styles using a specific code snippet, but struggled to make the link 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>
On the other hand, I was able to make the links clickable using a different piece of code, but lost the formatting I wanted:
<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>
I am wondering what I might be overlooking in order to achieve both the desired formatting and functionality of making the link clickable to the survey. (Just an FYI, SurveyURL and SurveyLink refer to the same thing) Thank you!