Hi
I hope someone can help with this.
I have changed the layout in the downloads.php file to use the downloads_panel_top template. I also wanted to have the standard vBulletin category row across the top of the panel which includes the standard collapse button so the dpanel of latest files, popular files and top contributors could be collapsed.
This is my downloads_panel_top template which includes my changes but I can't seem to get the collapse button to work - any help is greatly appreciated!
Code:
<!-- IB added for category row heading -->
<table id="downloads{$dpanel}" class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="3">
<a style="float:right" onclick="return toggleMultiCollapse('downloads')"><img id="collapseimg_downloads{$dpanel}" src="images/buttons/collapse_tcat.gif" alt="{$vbphrase['collapse_this']}" border="0" /></a>
Downloads
</td>
</tr>
</thead>
<tbody id="collapseobj_downloads{$dpanel}" style="{$vbcollapse['collapseobj_downloads']}">
<!-- end IB added for category row heading -->
<!-- IB removed for category row heading
<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%" align="center">
<tr>
<td>
<table cellpadding="6" cellspacing="1" border="0" width="100%"> -->
<tr align="center">
<td class="thead" width="33%"><span class="smallfont">{$vbphrase['ecdownloads_latest_files']}</span></td>
<td class="thead" width="33%"><span class="smallfont">{$vbphrase['ecdownloads_most_popular_files']}</span></td>
<td class="thead" width="33%"><span class="smallfont">{$vbphrase['ecdownloads_top_contributors']}</span></td>
</tr>
<tr align="left">
<td class="alt1" width="33%" valign="top">
<fieldset class="fieldset" style="margin:0px 0px 0px 0px">
<legend>{$vbphrase['ecdownloads_latest_files']}</legend>
<div style="padding:0px">
<table cellpadding="0" cellspacing="0" border="0" align="center" width="100%">
<tr>
<td width="100%">
<table cellpadding="2" cellspacing="{$stylevar['cellspacing']}" border="0" width="100%">
$dpanel_latest_bits
</table>
</td>
</tr>
</table>
</div>
</fieldset>
</td>
<td class="alt1" width="33%" valign="top">
<fieldset class="fieldset" style="margin:0px 0px 0px 0px">
<legend>{$vbphrase['ecdownloads_most_popular_files']}</legend>
<div style="padding:0px">
<table cellpadding="0" cellspacing="0" border="0" align="center" width="100%">
<tr>
<td width="100%">
<table cellpadding="2" cellspacing="{$stylevar['cellspacing']}" border="0" width="100%">
$dpanel_popular_bits
</table>
</td>
</tr>
</table>
</div>
</fieldset>
</td>
<td class="alt1" width="33%" valign="top">
<fieldset class="fieldset" style="margin:0px 0px 0px 0px">
<legend>{$vbphrase['ecdownloads_top_contributors']}</legend>
<div style="padding:0px">
<table cellpadding="0" cellspacing="0" border="0" align="center" width="100%">
<tr>
<td width="100%">
<table cellpadding="2" cellspacing="{$stylevar['cellspacing']}" border="0" width="100%">
$dpanel_contrib_bits
</table>
</td>
</tr>
</table>
</div>
</fieldset>
</td>
</tr>
<!-- IB removed for category row heading
</table>
</td>
</tr> -->
<!-- IB added for category row heading -->
</tbody>
<!-- end IB added for category row heading -->
</table>