Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

information menu - moved to footer.php


dirksmith

Recommended Posts

Hi

 

I'm re-arranging my menus - deleting the right hand side one - and reducing the left hand one (http://www.proper-photography.co.uk)

 

As part of this process, I've moved the information menu to the footer.php file.

 

However, I'm having real trouble spacing the menu options - Shipping & ReturnsPrivacy NoticeConditions of UseContact Us - putting psace between each menu option. I''d also like to seperate them with a '|'.

 

I've tried editing the english, index and footer files to do this - but no luck. I've also tried to insert a table - again no luck.

 

Alos having real problems centering it.

 

Any suggestions how I can fix this?

 

thx

 

Dirk

Link to comment
Share on other sites

Looking at your design idea you probably know more than me, but maybe just putting the upward slash between each: |

 

The upward slash is located at the backslash key with the SHIFT button on.

Link to comment
Share on other sites

It is not hard to do. This is the code extract from footer.php from this site

 

http://ozeworks.com/novelty/

 

 

 

<table border="0" width="100%" cellspacing="0" cellpadding="1">

<tr class="footer">

<td class="footer">

<table align="center" border="0" cellspacing="0" cellpadding="0">

<TR>

<td class="footer"><a href="<?php echo tep_href_link(FILENAME_CUSTOMER_SERVICE); ?>" class="footerNavigation"><?php echo LINK_CUSTOMER_SERVICE; ?></a> | </td>

<td class="footer"><a href="<?php echo tep_href_link(FILENAME_TELL_A_FRIEND); ?>" class="footerNavigation"><?php echo LINK_TELL_A_FRIEND; ?></a> | </td>

<td class="footer"><a href="<?php echo tep_href_link(FILENAME_ADVANCED_SEARCH); ?>" class="footerNavigation"><?php echo LINK_SEARCH; ?></a> | </td>

<? if (tep_session_is_registered('customer_id')) { ?>

<td class="footer"><a href="<?php echo tep_href_link(FILENAME_WISHLIST); ?>" class="footerNavigation"><?php echo LINK_WISHLIST; ?></a> | </td>

<td class="footer"><a href="<?php echo tep_href_link(FILENAME_GV_FAQ); ?>" class="footerNavigation"><?php echo LINK_GIVEAWAY; ?></a> | </td>

 

<? } ?>

<!--td class="footer"><a href="<?php echo tep_href_link(FILENAME_CUSTOMER_SERVICE); ?>" class="footerNavigation"><?php echo LINK_CUSTOMER_SERVICE; ?></a> | </td-->

<td class="footer"><a href="<?php echo tep_href_link(FILENAME_FAQ); ?>" class="footerNavigation"><?php echo LINK_FAQ; ?></a> | </td>

<td class="footer"><a href="<?php echo tep_href_link(FILENAME_ARTICLES); ?>" class="footerNavigation"><?php echo LINK_ARTICLES; ?></a> | </td>

<td class="footer"><a href="<?php echo tep_href_link(FILENAME_CONTACT_US); ?>" class="footerNavigation"><?php echo LINK_CONTACT_US; ?></a></td>

</TR>

</TABLE>

</td>

</tr>

</table>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...