How To Create a Double Navagation

EviL_WaLdO

New Member
How To Build a Double Nav without a mod.
basically a template fix
and some of the links to be drop down. i tried copying and configuring the original navbar. but it came out as a failure :x
any help?
 

JohnnyGuitar

New Member
well there are two positions where u can add the navbar.if ur talking about the very top,than this is what u put in your header template,that goes on top of <!-- logo -->

Code:
<!-- / nav buttons bar -->

<!-- second nav button row -->
<div align="center">
	<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
	<tr align="center">	
		<td class="vbmenu_control"><a href="#">#>Link Title</a></td>
<td class="vbmenu_control"><a href="#">Link Title</a></td>
<td class="vbmenu_control"><a href="#">Link Title</a></td>
<td class="vbmenu_control"><a href="#">Link Title</a></td>
<td class="vbmenu_control"><a href="#">Link Title</a></td>
	</tr>
	</table>
</div>
<!-- / second nav button row -->
which should make ur navbar look like this....
mcpwxs.jpg
 

Termy

New Member
Or this is another alternative -

Edit "navbar" template, find

Code:
<!-- breadcrumb, login, pm info -->

add before

Code:
<!-- top nav buttons bar -->
<div class="tborder" style="padding:1px; border-bottom-width:0px">
    <table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
    <tr align="center">
        <td class="vbmenu_control"><a href="index.php?$session[sessionurl]">Home</a></td>
        <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily">$vbphrase[todays_posts]</a></td>
        <td class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td>
        <if condition="$show['member']">
        <td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a> / <a href="search.php?$session[sessionurl]do=process&showposts=0&exactname=1&searchuser=$bbuserinfo[username]">Replies</a></td>
        <td class="vbmenu_control"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars  =yes,resizable=yes,width=250,height=300'); return false;">Contacts</a></td>
        </if>
        <td class="vbmenu_control"><a href="group.php?$session[sessionurl]">Social Groups</a></td>
        <td class="vbmenu_control"><a href="online.php?$session[sessionurl]">$vbphrase[whos_online]</a></td>
        <if condition="$bbuserinfo[usergroupid] == 6">
        <td class="vbmenu_control"><a href="$admincpdir/index.php$session[sessionurl_q]">AdminCP</a></td>
        </if>
    </tr>
    </table>
</div>
<!-- / top nav buttons bar -->
 

Termy

New Member
Hi m8... I think this is what you are after.

Code:
Despite what category this is in it works with vBulletin 3.0 up to the most recent version of 3.7. 

What this does is create another navbar with drop down menus by typing $navbar2 in any of your templates. It is just like the navbar that come with VB but you.

I put a lot of description tags in the navbar2 template that gets installed to help explain what everything does. Once you understand what is going on here you can removed these. With very little modifications you can add to, remove or move items around in this additional navbar.

All instructions and files are in the .zip file attached m8.
 
Top