Ive been working on oscommerce and Ive been trying to get the sites nav bar into the cart.
Ive managed to get the images to show, but I cant get the links to work, on top of that the layout has been all messed up because I used the header table as a template, so the rest of the page has been pushed down the bottom of the page.
This is the code that Ive used to get the images to show in the column_left.php file.
Warning, probably the worst coding you have ever seen lol *
I really need some help to get the layout fixed and the links working.
you can see the oscommerce site here www.chelleheathherbalist.com.au/products/
and the main site here (so you can see what the nav bar is supposed to look like) www.chelleheathherbalist.com.au
As you can see Ive tried a couple of different things to get the links working.
?>
<table border="0" width="0" cellspacing="0" cellpadding="15">
<tr class="">
<td valign="left" align="left"><?php echo '<a href="' . tep_href_link(FILENAME_HOME) .'">' . tep_image(DIR_WS_IMAGES . 'home.gif', '') . '</a>'; ?></td>
</tr>
</table>
<table border="0" width="25%" cellspacing="0" cellpadding="15">
<tr class="">
<td valign="left" align="left"><?php echo '<a href="' . natural_medicine .'">' . tep_image(DIR_WS_IMAGES . 'natural_medicine.gif', '') . '</a>'; ?></td>
</tr>
</table>
<table border="0" width="25%" cellspacing="0" cellpadding="15">
<tr class="">
<td valign="left" align="left"><?php echo '<a href="' . family_care .'">' . tep_image(DIR_WS_IMAGES . 'family_care.gif', '') . '</a>'; ?></td>
</tr>
</table>
<table border="0" width="25%" cellspacing="0" cellpadding="15">
<tr class="">
<td valign="left" align="left"><?php echo '<a href="' . products .'">' . tep_image(DIR_WS_IMAGES . 'products.gif', '') . '</a>'; ?></td>
</tr>
</table>
<table border="0" width="25%" cellspacing="0" cellpadding="15">
<tr class="">
<td valign="left" align="left"><?php echo '<a href="' . about_me .'">' . tep_image(DIR_WS_IMAGES . 'about_me.gif', '') . '</a>'; ?></td>
</tr>
</table>
<table border="0" width="25%" cellspacing="0" cellpadding="15">
<tr class="">
<td valign="left" align="left"><?php echo '<a href="' . tep_href_link(FILENAME_CONTACT_US).'">' . tep_image(DIR_WS_IMAGES . 'contact.gif', '') . '</a>'; ?></td>
</tr>
</table>
<table border="0" width="25%" cellspacing="0" cellpadding="15">
<tr class="">
<td valign="left" align="left"><?php echo '<a href="' . links .'">' . tep_image(DIR_WS_IMAGES . 'links.gif', '') . '</a>'; ?></td>
</tr>
</table>