I'd like to share with others something i did as well in this theme.
Again the Nav button setup is cool.
Here is how you can make those buttons also open up drop-down menus.
I will use 2 examples.
For the new Post button, and a drop-down so that one can look at new posts at specidfic times. I did not create the hack, just mearly made it work on the button.
Common Templates/header
Use this to create the button and link
PHP Code:
<if condition="$show['member']">
<td width="50" height="55"><a href="search.php?do=getnew$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/nav_newpost2.gif" width="50" height="55" border="0" id="navbar_posts" alt=""/></a><script type="text/javascript"> vbmenu_register("navbar_posts"); </script></td></if>
You will need to check you image path ect.. and take note of moving the id="" from the td tag into the url tag. This will get rid of the little dropdown arrow.
Then your drop down menu.
Find this
PHP Code:
<!-- content table -->
$spacer_open
And place it above that.
Some thing this..
PHP Code:
<if condition="$show['searchbuttons']">
<div class="vbmenu_popup" id="navbar_posts_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">$vbphrase[get_posts_nav]</td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">Get All New Posts</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&minutes=15" accesskey="2">Last 15 Minutes</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&minutes=30" accesskey="2">Last 30 Minutes</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&hours=1" accesskey="2">Last Hour</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&hours=2" accesskey="2">2 Hours</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&hours=4" accesskey="2">4 Hours</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&hours=8" accesskey="2">8 Hours</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&hours=12" accesskey="2">12 Hours</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&days=1" accesskey="2">1 Day</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&days=2" accesskey="2">2 Days</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&days=7" accesskey="2">7 Days</a></td></tr>
<tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily&days=14" accesskey="2">14 Days</a></td></tr>
</table>
</div>
</if>
And your end result is attached as a screeny..also attached a screenshot of doing this with vbplaza.
Again these are not my hacks, I just made the dropdowns work with these buttons.