
Originally Posted by
MeltDown
I just can't get my brain around how to achieve this.
Can anyone tell me how to go about it?
Thanks again.
Tim
Open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php.
Within that, find the link that you want your link beneath.
Lets say you want your link under the unsubscribe link.
Find that section:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_UNSUBSCRIBE, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_UNSUBSCRIBE; ?></a></li>
Now beneath that just add your link with html:
Code:
<li><a href="your_link_here.htm">Name of Link Here</a></li>
Bookmarks