Is it possible to add some site navigation links above the header? If so, what file do I edit?
Thanks
Alma
Is it possible to add some site navigation links above the header? If so, what file do I edit?
Thanks
Alma
includes/templates/your_template/common/tpl_header.php
Zen cart PCI compliant Hosting
I don't wish to enter link into the exisiting menu bar, but add above it. Can you tell where to enter my html code?
if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
?>
<table class="centershop" border="0" cellspacing="0" cellpadding="0">
<?php
if (!isset($flag_disable_header) || $flag_disable_header == false) {
?>
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="headerNavigation">
<tr>
<td align="left" valign="top" width="35%" class="headerNavigation">
<a href="<?php echo zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a> |
<?php if (isset($_SESSION['customer_id'])) { ?>
<a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> |
<a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT
between
<tr><td>
and
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="headerNavigation">
create your new nav bar table.
like in the link in my signature
Zen cart PCI compliant Hosting
Worked perfect! Thank you!
Thank you Merlin!
Was great for me too!