Seem's I finally figured out his code so to speak. What he did was add this to the board wrapper
<script type="text/javascript' src=jscripts/ipb_global.js'></script>
<script type='text/javascript' src='jscripts/dmenu.js'></script>
Add a link like this to the board header where normally your Help, Search, Members etcetera links are
<span id='gbartab'><a href='#gbarlinks'>Extra Stuff </a></span>
Add the following to his CSS template
.dmenu
{
position: absolute;
z-index: 10;
width: auto;
}
.dmenu .row1
{
padding: 5px;
}
.dmheader
{
margin-bottom: 2px;
text-align: center;
font-weight: bold;
}
#gbarlinks
{
visibility: hidden;
top: 0px;
left: 0px;
}
And finally some code like this as an example
<div id='gbarlinks' class='dmenu' style='width:150px'>
<div class='borderwrap'>
<table align='center' cellpadding='0'>
<tr>
<td align='left' valign='top' class='row2'>
<span class='dmheader'><center><a href='http://www.dscripting.com/index.php?act=idx'>Board
Index</a></center></span>
<hr size='1' style='color:#eeeeee;width:90%'>
<img src='style_images/dscripting/nav_m_dark.gif' border='0' alt='.' />
<a href='http://www.dscripting.com/index.php?act=Arcade''>Arcade</a>
</td>
</tr>
</table></div>
</div>
The only thing that really puzzled me was, how in the heck did he link to "#gbarlinks" in the CSS? Every time I tried to a href link to #gbarlinks, my forum wouldn't load the code up to even bring up the menu.
This kept me up all night trying to figure out how he's working this all together even though the .JS file is supposedly loaded.