I would like to arrange the main categories in a way that every two categories appear next to each other (in the mode DOWNLOADSII). Every time I tried this, the categories come above each other. Please Advise.
this is my downloads_main_catbit template:
Code:
<div align="center">
<table border="0" width="200" cellspacing="0" cellpadding="0">
<tr>
<td valign="top">
<table border="0" width="220" id="table1" cellspacing="0" cellpadding="0">
<tr>
<td>
<p align="center">
<a href="downloads.php?do=cat&id={$cat['id']}">
<img class="inlineimg" src="{$cat['catimage']}" alt="{$cat['name']}" border="0" id="forum_statusicon_$forum[forumid]" /></a></td>
</tr>
<tr>
<td>
<table border="0" width="100%" id="table2" cellspacing="0" cellpadding="0" background="hosting/border/border-bg.jpg">
<tr>
<td width="1"><img border="0" src="hosting/border/border-r.jpg" width="4" height="20"></td>
<td><a href="downloads.php?do=cat&id={$cat['id']}">{$cat['name']}</a></td>
<td dir="rtl" width="1">
<img border="0" src="hosting/border/help.gif" alt="{$cat['description']}"></td>
<td dir="rtl" width="1"><img border="0" src="hosting/border/border-left.jpg" width="4" height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border="0" width="100%" id="table3" cellspacing="0" cellpadding="0" background="hosting/border/border-bg.jpg">
<tr>
<td width="1"><img border="0" src="hosting/border/border-r.jpg" width="4" height="20"></td>
<td>{$cat['files']}</td>
<td dir="rtl" width="1"><img border="0" src="hosting/border/border-left.jpg" width="4" height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border="0" width="100%" id="table4" cellspacing="0" cellpadding="0" background="hosting/border/border-bg.jpg">
<tr>
<td width="1"><img border="0" src="hosting/border/border-r.jpg" width="4" height="20"></td>
<td><span class="smallfont">{$vbphrase['ecdownloads_files']}</span></td>
<td dir="rtl" width="1"><img border="0" src="hosting/border/border-left.jpg" width="4" height="20"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table border="0" width="100%" id="table5" cellspacing="0" cellpadding="0" background="hosting/border/border-bg.jpg">
<tr>
<td width="1"><img border="0" src="hosting/border/border-r.jpg" width="4" height="20"></td>
<td>{$vbphrase['ecdownloads_downloads']}: {$dl->stats['downloads']}</td>
<td dir="rtl" width="1"><img border="0" src="hosting/border/border-left.jpg" width="4" height="20"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>