Quote:
Originally Posted by Animemike
did i add it in the wrong place?
Thanks
|
Yeah, that is the wrong place. That isn't where the dropdown items are defined.
Find this:
HTML Code:
<if condition="$show['communitylink']">
<!-- community link menu -->
And you should see a div and then a table right there and that is where you would add it.
This is from mine... your's may be different cuz I don't remember if I changed classes or spacing or anything:
HTML Code:
<div class="vbmenu_popup" id="community_menu" style="display:none;margin-top:3px" align="$stylevar[left]">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">$vbphrase[community_links]</td></tr>
<if condition="$show['quick_links_groups']">
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/group.php?$session[sessionurl]do=grouplist">- View All Groups</a></td></tr>
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/messagelist.php?$session[sessionurl]do=list">- Your Group Messages</a></td></tr>
</if>
more rows...
</table>
</div>