You already have everything you need to set this up.
Open includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
The section you would look for is here:
PHP 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'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?>
<?php } ?>
</ul>
</div>
Edit this section as indicated by the highlights
Code:
<div id="navSupp">
<ul id="liststyles">
<li class="col1a"><?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'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?>
<?php } ?>
</ul>
</div>
You'll need to add the following to:
includes/templates/YOUR_TEMPLATE/css/stylesheet.css
#listyles {
display: block;
padding: 0;
margin: 0;
width: 100%;
list-style-type: none;
}
#listyles li {
line-height: 1.5em;
}
li.col1a, li.col1b, li.col1c, li.col1d, li.col1e {
margin-left: 0;
}
li.col2a, li.col2b, li.col2c, li.col2d, li.col2e {
margin-left: 13em;
}
li.col3a, li.col3b, li.col3c, li.col3d, li.col3e {
margin-left: 25em;
}