PitchouneN64ngc
03-24-2007, 10:00 PM
If you create some style and the little down-oriented arrow trouble you, you can remove it directly in your templates ;)
The follow example works for any vBMenu in vBulletin.
For example, you have the Search drop-down menu in the "navbar" template. For display this menu, you have this:
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search"); </script></if></td>
And for removing the down-oriented arrow, you must to add the value 'true' as a second attribute of the javascript function vbmenu_register like this:
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search", true); </script></if></td>
Enjoy ;)
The follow example works for any vBMenu in vBulletin.
For example, you have the Search drop-down menu in the "navbar" template. For display this menu, you have this:
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search"); </script></if></td>
And for removing the down-oriented arrow, you must to add the value 'true' as a second attribute of the javascript function vbmenu_register like this:
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search", true); </script></if></td>
Enjoy ;)