In includes/functions_newpost.php
FIND
Code:
$show['posticons'] = true;
if ($numicons % 7 == 0 AND $numicons != 0)
REPLACE WITH
Code:
$show['posticons'] = true;
if ($numicons % 4 == 0 AND $numicons != 0)
That shows 4 icons per row. You might want to change it to show more or less according to your desires
In template posticonbit
FIND
REPLACE WITH
In template posticons
FIND
Code:
<td width="12%" nowrap="nowrap">
REPLACE WITH
Code:
<td width="25%" nowrap="nowrap">
NOTE: If you change the number of rows in the php file to a different number than 4, then the percentages will need to be changed accordingly.