Ezpages Footer Columns will not be useful for you.
Change in admin > Configuration > EZ-Page Settings > EZ-Pages Footer Link Separator :: to |
You will want to modify the div structure of your custom tpl_footer.php.
Code:
<?php
if (!$flag_disable_footer) {
?>
<div id="footer">
<div class="bg_footer">
<div class="column">
<div class="indent">
<span>
<?php
if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) {
?>
<a href="<?php echo HTTP_SERVER . DIR_WS_CATALOG; ?>"><?php echo HEADER_TITLE_CATALOG; ?></a><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?>
<?php } ?>
</span>
<div class="copy">Copyright 2008-2011 Rare Horror DVDs. Powered by Zen Cart</a></div>
</div>
</div>
<div class="column_1">
<div class="indent">
<?php echo zen_image(DIR_WS_TEMPLATE.'images/cards.jpg','Accepted Credit Cards'); ?>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<?php
} // flag_disable_footer
?>
Code:
<?php
if (!$flag_disable_footer) {
?>
<div id="footer">
<div id="footerLinks">
<?php
if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) {
?>
<a href="<?php echo HTTP_SERVER . DIR_WS_CATALOG; ?>"><?php echo HEADER_TITLE_CATALOG; ?></a><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?>
<?php } ?>
</div>
<div class="copy">Copyright 2008-<?php echo date('Y'); ?> Rare Horror DVDs. Powered by Zen Cart</div>
<div id="cardImage">
<?php echo zen_image(DIR_WS_TEMPLATE.'images/cards.jpg','Accepted Credit Cards'); ?>
</div>
<div id="secureImage">
<?php echo zen_image(DIR_WS_TEMPLATE.'images/secure.jpg','Secured by Comodo'); ?>
</div>
<div id="upsImage">
<?php echo zen_image(DIR_WS_TEMPLATE.'images/ups.jpg','UPS Shipping'); ?>
</div>
<div class="clear"></div>
</div>
<?php
} // flag_disable_footer
?>
Add to your stylesheet
Code:
#footer {position: relative; padding: 1.0em;}
#footerLinks {width:60em; margin: auto;}
#footer .copy {position: absolute; bottom: 1em; left: 60%;}
#cardImage {float: left;}
#secureImage {float: left; margin-left: 23em;}
#upsImage {float: right;}