Quote:
Originally Posted by bajrice
thank you very much billstelling
one more question,....
how to put the category thumb pic in front of the category name ?! (same at subcategories)
thanks
|
Overwrite your full
downloads2_main_catbit template with this:
Code:
<tr valign="top">
<td class="dl2info" valign="top" align="{vb:stylevar left}" nowrap="nowrap">
<vb:if condition="$cat['catimage'] != ''"><a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw cat.id}"><img src="{vb:raw cat.catimage}" alt="{vb:raw cat.name}" title="{vb:raw cat.name}" border="0" align="center"/></a></vb:if>
<b><a href="downloads.php?{vb:raw session.sessionurl}do=cat&id={vb:raw cat.id}">{vb:raw cat.name}</a></b>
</td>
<td class="dl2info" valign="center" align="{vb:stylevar left}">
<span class="smallfont">{vb:raw cat.description}</span>
<vb:if condition="$subcats">
<div class="subcats">
<h4>{vb:rawphrase dl2_sub_cats}:</h4>
<ol class="commalist">
{vb:raw subcats}
</ol>
</div>
</vb:if>
</td>
<td class="dl2info" valign="top" align="center" height="40"><span class="smallfont">{vb:raw cat.files} items</span></td>
</tr>
Hope this helps.