Adding a contact link to the main header nav?

Member 3639

Active member
Is there a simple and easy way to just add the contact page link into the main header links between members and help?
 
template edit:

open template navigation
search for
Code:
<!-- help -->
add above
Code:
<li class="navTab home PopupClosed"><a href="{xen:link 'misc/contact'}" class="navLink">{xen:phrase contact_us}</a></li>
 
Although i just noticed, using it like this, when i click on it, it thinks the Help tab is clicked, it goes to the right page but then the Help tab is highlighted. Can i stop that and just have the contact tab highlighted?
 
template edit:

open template navigation
search for
Code:
<!-- help -->
add above
Code:
<li class="navTab home PopupClosed"><a href="{xen:link 'misc/contact'}" class="navLink">{xen:phrase contact_us}</a></li>
anyone have a simple solution for this?
thanks

add this instead
Code:
        <li class="navTab home PopupClosed"><a class="navLink OverlayTrigger" href="misc/contact">{xen:phrase contact_us}</a></li>
it would open the "contact us" as pop-up
hope you like it
 
Top Bottom