VBA CMPS issues

jaredking10

New Member
when i make the cmps, how do i make another bar at the top in the navbar that says home, like theres a register one, how do i make a home one. to lead to the portal.
 
In you skin templated open navabar template and find

PHP:
		<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>


replace with and edit the

Code:
http://www.yourlink.com/index.php   and

My New Link




PHP:
	<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>

<td class="vbmenu_control"><a href="http://www.yourlink.com/index.php" accesskey="5">My New Link</a></td>
 
Back
Top