Quote Originally Posted by gsdcypher View Post
hello. i just started "playing" with the flexible footer... i have a row the rests on top of the flexible footer columns with the word "home" centered in the row that when clicked, takes me back up to the top of the page. how do i remove that row and the home link?
That link is hard coded by default in the stock code.

open:
/includes/templates/YOUR_TEMPLATE_NAME/common/tpl_footer.php

find:
PHP Code:
<li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>
change to:
PHP Code:
<!--<li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>-->
if you are not using ez-pages footer bar, you can comment out the entire block of code like so:
PHP Code:
<!--<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>-->

Quote Originally Posted by gsdcypher View Post
also, how do i add a gray line to the bottom of the flexible footer columns (just like the top) to "box it off"?

thx!
The wrapper to style flexible footer columns is
Code:
#flex-navSupp {display: table; width: 100%; background: #eeeeee;color:#000;}
Hope this helps!