Nav Help

Hassan

New Member
i wana add Home page tab in the nav top anyone can help me thanks.

Home<< Register FAQ Members List Calendar Today's Posts Search
 
in navbar template find

PHP:
<if condition="$show['registerbutton']">
			<td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td>
		</if>

Above add

PHP:
<td class="vbmenu_control"><a href="home.php" accesskey="5">Home</a></td>

remember to change home.php to a url if its not on the forum directory or index2.php or to what ever your trying to point.

-vBCustomz
 
you got what i mean? my website main page is index.html and forum in sub dir \forum\ now i want add on forums Home tab on top where "Register FAQ Members List Calendar Today's Posts Search" tabs already there when we click home tab it takes us website main page not the forums main page anyone else can help me plz.
 
as above but change the code to:
HTML:
<td class="vbmenu_control"><a href="http://yoursite.com/">Home</a></td>
 
In footer template find:
HTML:
<if condition="$show['contactus']"><a href="$vboptions[contactuslink]" rel="nofollow" accesskey="9">$vbphrase[contact_us]</a> -</if>

Add above:
HTML:
<a href="http://yoursite.com/">Home</a> -
 
Back
Top