I really like the drop down for Quick Links and want to add another one for a custom item on my navBar.
I edited my navbar and created a new entry called "Site Links":
Then in the NavBar template (inside the <!-- NAVBAR POPUP MENUS --> If Statement) I added another group of links:
Now I'm stuck...
I know I have to set the condition $show['siteLinks'] somwhere, just not sure where....
Any guidance would be greatky appreciated.
Thanks!
I edited my navbar and created a new entry called "Site Links":
Code:
<td id="navbar_siteLinks"><a href="/forum/local_links.php?">Site Links</a><script type="text/javascript"> vbmenu_register("navbar_siteLinks" ,1); </script></td>
Code:
<if condition="$show['siteLinks']"> <!-- Site Links menu --> <div class="vbmenu_popup" id="siteLinks_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr><td class="thead">Site Links</td></tr> <tr><td class="vbmenu_option"><a href="#">Link #1</a></td></tr> <tr><td class="vbmenu_option"><a href="#">Link #2</a></td></tr> <tr><td class="vbmenu_option"><a href="#">Link #3</a></td></tr> <tr><td class="vbmenu_option"><a href="#">Link #4</a></td></tr> <tr><td class="vbmenu_option"><a href="#">Link #5</a></td></tr> </table> </div> <!-- / Site Links menu --> </if>
I know I have to set the condition $show['siteLinks'] somwhere, just not sure where....
Any guidance would be greatky appreciated.
Thanks!
Comment