In order to replace CS-Cart logo with your own one in a gift certificate you should do the following:
- Put your logo with the your_logo.gif name to the skins/CUSTOMER_ACTIVE_SKIN/mail/images directory.
- Open the default.tpl file located in the skins/[CUSTOMER_ACTIVE_SKIN]/mail/addons/gift_certificates/templates directory of your CS-Cart installation, where [CUSTOMER_ACTIVE_SKIN] is an active skin of your storefront.
- Find the following part of code there:
<td width="370"><img src="{$images_dir}/gift_cert_logo.gif" border="0" width="174" height="53" alt="{$settings.Company.company_name}" style="margin: 12px 0px 8px 13px;" /></td>
- Replace it with the following part of code:
<td width="370"><img src="{$images_dir}/your_logo.gif" border="0" width="174" height="53" alt="{$settings.Company.company_name}"
style="margin: 12px 0px 8px 13px;" /></td>
- Save the file.