The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Two Lines for Links?
I have no idea what to search for on this so I figured I'd ask here...
Where it shows this... UserCP | FAQ | Member List | Calendar | Arcade | Store | New Posts | Search | Quick Links | Log Out How could I get that to go to two lines? I have two more options I'm adding right now and it's getting cluttered. |
#2
|
||||
|
||||
You can either create a new option called "Interactive" and have it as a drop down menu like Quick Links, and place the Arcade, Store and any other features you'd like in there by doing this:
Open your navbar template, find: HTML Code:
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td> HTML Code:
<td id="interactive" class="vbmenu_control"><a href="#interactive">Interactive</a> <script type="text/javascript"> vbmenu_register("interactive"); </script></td> HTML Code:
<!-- NAVBAR POPUP MENUS -->
HTML Code:
<!-- interactive links --> <div class="vbmenu_popup" id="interactive_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr><td class="thead">Interactive Features</td></tr> <tr><td class="vbmenu_option"><a href="feature1.php?$session[sessionurl]">Feature 1</a></td></tr> <tr><td class="vbmenu_option"><a href="feature2.php?$session[sessionurl]">Feature 2</a></td></tr> <tr><td class="vbmenu_option"><a href="feature3.php?$session[sessionurl]">Feature 3</a></td></tr> </table> </div> <!-- / interactive links --> If you want the navbar on 2 lines, you can do this: Open your navbar template, find: HTML Code:
<if condition="$bbuserinfo['userid']"> <td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a></td> </if> </tr> HTML Code:
<tr align="center"> <td class="vbmenu_control"><a href="feature1.php?$session[sessionurl]">Feature 1</a></td> <td class="vbmenu_control"><a href="feature2.php?$session[sessionurl]">Feature 2</a></td> <td class="vbmenu_control"><a href="feature3.php?$session[sessionurl]">Feature 3</a></td> </tr> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|