default group image is in left side...
i want to put it in the middle...
like in this
how can i do that? is it possible to change the place of group image?
Of course it is possible, edit postbit
template:
<td class="post_author">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
</span>
</td>
<td class="smalltext post_author_info" width="165">
{$post['user_details']}
</td>
To:
<td class="post_author">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
</span>
</td>
<td style="text-align: center;">
{$post['groupimage']}
</td>
<td class="smalltext post_author_info" width="165">
{$post['user_details']}
</td>
Note: since you didn't provide postbit template from your theme my code is based on default theme so you may want to suit it to your template.