New Page

Like up on the nav bar, where you can click members and help and such how do i make those?
So, basically you want to add links to your navigation menu, right?

1. With add-on: http://xenforo.com/community/threads/product-xenfans-com-extra-tabs.19606/

2. With template edit:

Admin Control Panel -> Appearance -> Styles & Templates -> Templates -> navigation

Find :

HTML:
<!-- extra tabs: end -->

Above it, insert :

PHP:
<li class="navTab {xen:if $extraTab.selected, 'selected', 'PopupClosed'}"><a href="LINK" class="navLink">ANCHOR TEXT</a></li>

Of course, replace :

"LINK" with the link to your page and..
"ANCHOR TEXT" with the anchor text of your link.

(y)
 
Pages are part of the forums route, so the forum tab will always be selected.

You will have to create an add-on if you want pages with discrete tabs.
 
Top Bottom