View Single Post
  #2  
Old 07-14-2009, 06:05 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,201
 

Default Re: how to bold the Phone Number

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}&nbsp;&nbsp;&nbsp;{$lng.lbl_phone_2_title}: {$config.Company.company_phone_2}{/if}&nbsp;&nbsp;</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}&nbsp;&nbsp;&nbsp;<b>{$lng.lbl_phone_2_title}: {$config.Company.company_phone_2}</b>{/if}&nbsp;&nbsp;</td> </tr>
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote