I thought it could be done by templates, if all the awards have the same sizes then u can do it what i above said with <td> but thats the hard way.
The easy way:
Open admin/functions.php
Find:
PHP Code:
// awards/medals/cards hack by lesane
if ($post[award]=="1")
{
$result=$DB_site->query("SELECT * FROM useraward WHERE userid='$post[userid]' AND awardsid=aw ");
while ($awardsp=$DB_site->fetch_array($result))
{
eval("\$post[hasaward] .= \"".gettemplate("awards")."\";");
}
}
// awards/medals/cards hack by lesane
And
change it to:
PHP Code:
// awards/medals/cards hack by lesane
if ($post[award]=="1")
{
$result=$DB_site->query("SELECT * FROM useraward WHERE userid='$post[userid]' AND awardsid=aw ");
$count=0;
while ($awardsp=$DB_site->fetch_array($result))
{
if ($count%3=="2") {
$rule="<br>";
} else {
$rule="";
}
eval("\$post[hasaward] .= \"".gettemplate("awards")."\";");
$count++;
}
}
// awards/medals/cards hack by lesane
Open the template: awards
Replace all code with this code:
PHP Code:
<img src="$awardsp[url]" alt="$awardsp[name]">$rule
That should work