it's pretty easy to add nav bar links.
Nav bar items are located in:
Style Manager > Choose your style > Navigation / breadcrumb Templates > navbar
All the nav bar links are located between the <!-- nav buttons bar --> and <!-- / nav buttons bar --> tags.
You should see some lines like:
Quote:
<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
|
They create the FAQ, Member list and Calendar links in the nav bar.
Just add a similar table data field like one of the one's above.
ie. here is one I've added after the calander link:
Quote:
<td class="vbmenu_control"><a href="chat/flashchat.php"
target="flashchat">ChatRooms</a></td>
|
Steve