(2013-04-26, 05:51 PM)MikeInToshx Wrote: I'd like to change it by CSS rather than adding html; but which CSS do I edit in global.css?
with avatar - postcount I ment he same as stars and avatar, the amount of posts u posted.( It's under the avatar )
paste this in your global.css
div#posts > table.tborder > tbody > tr > td:nth-child(1) > span.smalltext a > img {
padding:20px 0px;
}
OR
In order to add padding or margin values in css you need assign a class to profile avatar, in AdminCP -> templates and styles -> templates -> <your theme template set-> > postbit templates -> postbit_avatar
and
<a href="{$post['profilelink_plain']}"><img src="{$post['avatar']}" alt="" {$avatar_width_height} /></a>
replace with
<a href="{$post['profilelink_plain']}"><img class="postbit_avatar" src="{$post['avatar']}" alt="" {$avatar_width_height} /></a>
and save it.
In your global.css add
.postbit_avatar {
padding:4px 0px;
}