Log in

View Full Version : Drop Down Site Navigation


infiniterb
01-21-2005, 04:53 AM
I'm looking for the "Site Map" hack that vbulletin.nl is currently using on their navbar. It's basically a drop down list like search and quick links drop down lists.

Tekton
01-21-2005, 05:53 AM
You could just add one in the navbar template and add whatever links you want. Just use the ones there to start with as a reference.

Guy G
01-21-2005, 06:38 AM
I'm looking for the "Site Map" hack that vbulletin.nl is currently using on their navbar. It's basically a drop down list like search and quick links drop down lists.

<table cellpadding="4" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<td id="sitemap" class="vbmenu_control"><a href="#sitemap">Site Map</a> <script type="text/javascript"> vbmenu_register("sitemap"); </script></td>


<td class="vbmenu_control"><a href="register.php?">Register</a></td>

<td class="vbmenu_control"><a href="faq.php?" accesskey="5">FAQ</a></td>
<td class="vbmenu_control"><a href="memberlist.php?">Members List</a></td>
<td class="vbmenu_control"><a href="calendar.php?">Calendar</a></td>





</tr>
</table>


put that where you want in the navbar template.