Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Ezpages footer separator problem

Ezpages footer separator problem

Locked

Views: 1,412

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
25 Feb 2007, 10:42 PM
#1
lisk avatar

lisk

Zen Follower

Join Date:
Jun 2006
Posts:
118
Plugin Contributions:
0

Ezpages footer separator problem

Hi - I'm having the weirdest ezpages problem in setting up a new zen cart site. I've added two links to the footer, and I can't get the separator to stop showing BEFORE the first one. I have the links numbered footer 1 and 2. Is this normal? Anyone know how I can fix it?

Help?

Here's the url: http://glasscardguard.com/shop/

Thank you!
-Lis

26 Feb 2007, 1:10 AM
#2
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,845
Plugin Contributions:
0

Re: Ezpages footer separator problem

well the first divider is the one that show after the home link that is normally on that line......How did you turn off the home link in the bar?

26 Feb 2007, 9:09 AM
#3
lisk avatar

lisk

Zen Follower

Join Date:
Jun 2006
Posts:
118
Plugin Contributions:
0

Re: Ezpages footer separator problem

I have absolutely no idea. I didn't do it on purpose.... is there a way to fix it?

26 Feb 2007, 3:22 PM
#4
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,845
Plugin Contributions:
0

Re: Ezpages footer separator problem

open tpl_footer.php from includes/templates/YOUR_CUSTOM_TEMPLATE/common and find the following section:```

<!--bof-navigation display --> <div id="navSuppWrapper"> <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> </div> <!--eof-navigation display --> ```

Do you have the line in red? If you do is it correct? if you don't have this line and want to add the home link back than place this line in.

26 Feb 2007, 10:15 PM
#5
lisk avatar

lisk

Zen Follower

Join Date:
Jun 2006
Posts:
118
Plugin Contributions:
0

Re: Ezpages footer separator problem

Perfect! Thank you. :)