Edder
04-20-2007, 06:39 AM
The arrows you see next to the "Search" and "Quick Links" can be easily removed by slightly modifying the javascript in their respective templates.
You can find some of those drop-down links in the navbar, forumdisplay, and showthread files. They generally look like this:
<script type="text/javascript"> vbmenu_register("forumsearch"); </script>
To remove the arrows next to the links, simply add ",true" (without the quotes) before the end parenthesis like so:
<script type="text/javascript"> vbmenu_register("forumsearch",true); </script>
Voila, the arrows have disappeared!
You can find some of those drop-down links in the navbar, forumdisplay, and showthread files. They generally look like this:
<script type="text/javascript"> vbmenu_register("forumsearch"); </script>
To remove the arrows next to the links, simply add ",true" (without the quotes) before the end parenthesis like so:
<script type="text/javascript"> vbmenu_register("forumsearch",true); </script>
Voila, the arrows have disappeared!