
Originally Posted by
HomsteadMom
Thanks it worked well

. But what I'm really trying to do is have it in a separate menu not inside one of the others. Such after the shopping cart tab. I've been playing with it but can't get it right yet....

Just a single item, right, not a drop down list? Add the same thing,
Code:
<li><a href="link_here.htm">Name of Link Here</a></li>
Just add it after this:
Code:
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li class="submenu"><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>
<ul class="level2">
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
</ul>
</li>
<?php } else { ?>
<li><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
<?php } ?>