Log in

View Full Version : drop down menus not working


Dluzion
01-31-2007, 10:23 PM
none of my drop down menus are working please help!

http://gamebeaver.com/

try any drop down menu from the left none of them works
i have no idea why

webmazter
02-01-2007, 12:36 AM
you need the javascript.

For Example:

<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 the corresponding menu items like:

<!-- header quick search form -->
<div class="vbmenu_popup" id="navbar_search_menu" style="display:none">
<form action="search.php?do=process" method="post">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[search_forums]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<input type="hidden" name="do" value="process" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="childforums" value="1" />
<input type="hidden" name="exactname" value="1" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<div><input type="text" class="bginput" name="query" size="25" tabindex="1001" /><input type="submit" class="button" value="$vbphrase[go]" tabindex="1004" /></div>
</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<label for="rb_nb_sp0"><input type="radio" name="showposts" value="0" id="rb_nb_sp0" tabindex="1002" checked="checked" />$vbphrase[show_threads]</label>
&nbsp;
<label for="rb_nb_sp1"><input type="radio" name="showposts" value="1" id="rb_nb_sp1" tabindex="1003" />$vbphrase[show_posts]</label>
</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
</tr>
</table>
</form>
</div>
<!-- / header quick search form -->


They're originally in "navbar" template.

Dluzion
02-01-2007, 09:18 AM
I just checked its there alright

that and on posts where you click on a users name and a dropdown menu appears with options, that isnt working either..

webmazter
02-01-2007, 01:51 PM
From the link you gave us:

<tr><td id="navbar_search" class="vbmenu_control2"><img src="images/aimgle/main/dot.gif" alt="" /> <a href="search.php" accesskey="4" rel="nofollow">Search</a> </td></tr>


You don't have the javascript.