Quote:
Originally Posted by DanCan
Sure: You can find the forums here
Code used for the test drop down example:
Code:
<!-- dropdown start -->
<td id="1" class="vbmenu_control"><a href="#1">test</a>
<script type="text/javascript"> vbmenu_register("extra"); </script></td>
<!-- dropdown end -->
</tr>
</table>
</div>
<!-- / nav2 buttons bar -->
<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->
<!-- extras pop start -->
<div class="vbmenu_popup" id="1_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">test</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="http://www.iihf.com">IIHF</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="http://www.swehockey.se">Euro Hockey Tour</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="http://www.icehockeychallenge.net">EIHC</a></td>
</tr>
</table>
</if>
</div>
<!-- extras pop end -->
<!-- / NAVBAR POPUP MENUS -->
<!--####### end of navbar2 #######-->
|
you have set the id to 1 on one part of the code and id="1_menu" to the other change the id="
1_menu"
to
id="
1"
that should sort it I think