MyBB Community Forums

Full Version: make avatar bigger in posts?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
in my acp settings i set the width and height to 200x200 but it shows as a small avatar....how do i change this? i don't know why it's not showing bigger than what it is. My website is:

www.DTPGaming.com
I think its:

AdminCP > templates > Postbit > postbit_avatar should show something like:

<a href="{$post['profilelink_plain']}"><img src="{$post['avatar']}" alt="" {$avatar_width_height} /></a>
Size is being restricted in the templates,

<td class="post_avatar" width="1" style="padding-right: 10px;">
							<!-- start: postbit_avatar -->
<a href="member.php?action=profile&amp;uid=1"><img src="./uploads/avatars/avatar_1.jpg?dateline=1334769342" alt="" width="53" height="70" /></a>

Change "53" and "70" to "100%" or just remove them.