If there is not a copy of that file in includes/templates/YOUR_TEMPLATE/common/tpl_footer.php to modify then should get a copy of the file from includes/templates/template_default/common/tpl_footer.php and place one there. Then in that new file in includes/templates/YOUR_TEMPLATE/common/tpl_footer.php you would want to replace this:
Code:
<div id="navSupp">
<ul>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
<?php } ?>
</ul>
</div>
with this:
Code:
<div id="navSupp">
<ul>
<li><a href="http://www.rivercitypetsupplies.com/"><img src="images/Payment_Methods.jpg"></a></li>
<li></li>
</ul>
</div>
This gives it a real nice look and the image also acts just as the 'HOME' link did or you could redirect it to a payments information page if you want.
Marc