I couldn't wait so I gave it a try
I got this code up:
PHP Code:
<if condition="$dl->statslatestfiles > 0">
<tr align="center">
<td class="thead" width="25%"><span class="smallfont">Latest Files</span></td>
<td class="thead" width="25%"><span class="smallfont">Most Popular Files</span></td>
<tr align="center">
<td class="alt1">
<fieldset class="fieldset" style="margin:0px 0px 0px 0px">
<legend>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">
<fieldset class="fieldset" style="margin:0px 0px 0px 0px">
<legend>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>
</tr> </if>
Only problem i'm getting is that the border at the top isn't filling up
Anyone know what I need to add to the code to fix it?