Add link to navbar

Firstly, locate in your navbar template the first instace of to do that login into admincp and locate Styles And Templates Open up the menu click into Style Manager locate your default style or anyther and open up the menu with "all style options menu" and drag to edit templates look for navigation/breadcrumbs then u will see a navbar link there underneath the navigation and breadcrumbs open it up
Find:
Code:
<td class="vbmenu_control" width=140><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
add after
Code:
<td class="vbmenu_control" width=140><a href="[Link]">[Name]</a></td>
fill in the name and link with ur own choice example
Code:
<td class="vbmenu_control" width=140><a href="chat/flashchat.php">FlashChat</a></td>

If you wish to add more than one menu, repeat the process for each one, ensuring that you use a different name for each menu otherwise they will not function correctly.
 
some custom skins use alt5 instead of vbmenu_control, You need to add the same as what is in your other links to make it blend in
 
some custom skins use alt5 instead of vbmenu_control, You need to add the same as what is in your other links to make it blend in
 
Back
Top