algirard8:
I was wondering how to add a button to the navigation bar. I wanted to add a button next to the shopping cart button. Also I would like to know how to add like another page like under the information button. I am adding a faq page and would like to add it in either of those two spots which ever one is easier. Thanks for the help.
To add the faq page under the information button, just open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php
Find the spot where you would like the new link.
Say you want it underneath the unsubscribe link.
Just find this part:
<li><a href="<?php echo zen_href_link(FILENAME_UNSUBSCRIBE, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_UNSUBSCRIBE; ?></a></li>
and add the link there:
<li><a href="index.php?main_page=faq">Name of link here</a></li>
As for the button, I'm still not positive what you want to do. You want an actual clickable button like with an image? Or you just want to add another item to the drop menu at the end, and have it look just like the rest of the menu?