Hi Guys. My zencart sits off my existing website. So my customisation revolves around matching my cart to the rest of my site. I am now trying to introduce the top nav bar that exists on the rest of my site, to the top of all my zencart pages. You can see my site and my cart at the URLs below.
www.sgtpepper.com.au
www.sgtpepper.com.au/store
The nav bar is a table, the source for that table is this....
table class="top-nav" width="100%" cellspacing="0px">
<tr>
<td id="top-nav-home" width="14.3%"><a href="index.html">Home</a></td>
<td id="top-nav-products" width="14.3%"><a href="products.html">Products</a></td>
<td id="top-nav-orders" width="14.3%"><a href="orders.html">Orders</a></td>
<td id="top-nav-new" width="14.3%"><a href="whats-new.html">What's New</a></td>
<td id="top-nav-care" width="14.3%"><a href="care.html">Chilli Care</a></td>
<td id="top-nav-recipes" width="14.3%"><a href="recipes.html">Recipes</a></td>
<td id="top-nav-contact" width="14.3%"><a href="contact.html">Contact Us</a></td>
</tr>
</table>
My question is, to implement this nav bar do I need to modify the various .php files or can I introduce the above code to a html file somwhere, perhaps even the stylesheet?
Thanks in advance,
Brendan



