Code:
<td height="35" align="center" class="HeadText">
{if $config.Company.company_phone}{$lng.lbl_phone_1_title}: {$config.Company.company_phone}{/if}{if $config.Company.company_phone_2} {$lng.lbl_phone_2_title}: {$config.Company.company_phone_2}{/if} </td>
</tr>
You can change the class HeadText in your css file or you can do this
Code:
<td height="35" align="center" class="HeadText">
{if $config.Company.company_phone}<b>{$lng.lbl_phone_1_title}: {$config.Company.company_phone}</b>{/if}{if $config.Company.company_phone_2} <b>{$lng.lbl_phone_2_title}: {$config.Company.company_phone_2}</b>{/if} </td>
</tr>