Zen Cart Logo

EZ Pages Footer

Locked

Views: 466

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
16 Dec 2010, 7:22 PM
#1
unsub avatar

unsub

New Zenner

Join Date:
Dec 2010
Posts:
31
Plugin Contributions:
0

EZ Pages Footer

At http://dizzydeals.net/
I removed the "Home" link from the footer after that it looks like there are a lot of extra spaces * before the | separator ?

my ezcart separators in the admin section is  |  so it's something in the tpl_ezpages_bar_footer.php or tpl_footer.php

Note: in the tpl_ezpages_bar_footer.php if i remove the <li> </li> it looks perfect except the font is bold and big

<li><?php echo ($i <= $n & $i != 1 ? EZPAGES_SEPARATOR_FOOTER : ''). "\n"; ?>
	<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a></li>

I cant figure it out can you please help?

16 Dec 2010, 7:41 PM
#2
unsub avatar

unsub

New Zenner

Join Date:
Dec 2010
Posts:
31
Plugin Contributions:
0

Re: EZ Pages Footer

FIXED!

<ul class="footer-links list-style-none float-right">
	<li><?php for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) {  ?>
	<?php echo ($i <= $n & $i != 1 ? EZPAGES_SEPARATOR_FOOTER : ''); ?>
	<a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a>
	<?php } // end FOR loop ?></li>
</ul>