We have a print form with a RichText field that returns a table. One column displays an Alpha field containing an email address, which is functionally a hyperlinked email address on the form but doesn't appear as a clickable link (default text color is black, not underlined). Unlike other columns, which respond correctly to styling, I cannot seem to change both the font-color (hyperlink blue) and the font-size & font-type.
Below is one of several HTML variations I've tried. In this version I tried formatting the cell of the last row and last column to be size 18pt. rather than 14pt. by formatting both the hyperlink anchor and the display text within the cell. You can see in the screenshot only the font color is changing.
Any suggestions are appreciated.
<table width='100%' border='1'>
<tr>
<td bgcolor='#00507F' style='color:#FAFAFA; vertical-align: middle; text-align: center;'>
<b>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 14pt;'>PRF Role</span>
</b>
</td>
<td bgcolor='#00507F' style='color:#FAFAFA; vertical-align: middle; text-align: center;'>
<b>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 14pt;'>Employee Name</span>
</b>
</td>
<td bgcolor='#00507F' style='color:#FAFAFA; vertical-align: middle; text-align: center;'>
<b>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 14pt;'>Employee Email</span>
</b>
</td>
</tr>
<tr>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt;'>Initiator</span>
</td>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt;'>"+InitiatorName+"</span>
</td>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt; color: #0000EE;'>"+InitiatorEmail+"</span>
</td>
</tr>
<tr>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt;'>Hiring Manager</span>
</td>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt;'>"+HiringManagerName+"</span>
</td>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt; color: #0000EE;'>"+HiringManagerEmail+"</span>
</td>
</tr>
<tr>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt;'>HCP Approver</span>
</td>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt;'>"+HCPApproverName+"</span>
</td>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt; color: #0000EE;'>"+HCPApproverEmail+"</span>
</td>
</tr>
<tr>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt;'>VP Approver</span>
</td>
<td>
<span style='font-family:Source Sans Pro, Helvetica, Arial, sans-serif; font-size: 12pt;'>"+VPApproverName+"</span>
</td>
<td>
<span style='font-family:source sans pro, helvetica, arial, sans-serif; font-size:14pt;'>
<a href='mailto:"+VPApproverEmail+"?subject=PRF%20Inquiry'>
<span style='font-family:source sans pro, helvetica, arial, sans-serif; font-size:14pt;'>"+VPApproverEmail+"</span>
</a>
</span>
</td>
</tr>
</table>