Quote:
Originally Posted by kh99
You could do this: edit the navbar template and add the part in red (this section is at the very top of the template code):
Code:
<div id="navbar" class="navbar">
<ul id="navtabs" class="navtabs floatcontainer<vb:if condition="$show['member'] AND $notifications_total"> notify</vb:if>">
{vb:raw template_hook.navtab_start}
<vb:if condition="!$vboptions['selectednavtab'] AND THIS_SCRIPT != 'search'">
<li><a class="navtab" href="bbmatrix.net">Home</a></li>
<li class="selected"><a class="navtab" href="{vb:link forumhome}">{vb:rawphrase forum}</a>
|
Thank you for your reply
When I added the code in red,
The Home Button did appear BUT, it takes me to >>>
http://bbmatrix.net/forums/bbmatrix.net
which is an invalid URL obviously, why is it having the bbmatrix.net/forums as a prefix?
I just want it to direct to
http://bbmatrix.net
Thank you
--------------- Added [DATE]1321450962[/DATE] at [TIME]1321450962[/TIME] ---------------
Ahh I fixed it!
Had to change the code from:
<li><a class="navtab" href="bbmatrix.net">Home</a></li>
to
<li><a class="navtab" href="http://bbmatrix.net">Home</a></li>
That was simple!
Thank you very much for guiding me! I really appreciate it!