This post is about the avatar scroll bar. It took me a day to figure this out, so hopefully it'll help someone else faster.

===================================================
I like the way A.M.A. set up the profile box (username/group/karma etc.)
It's on top of the posts, as opposed to the side.
But, whatever you set your avatar size to (in admin options) you'll notice that a scroll bar kicks in.
(Depending on the Admin size limit of avatars it'll show up on the length or width.)
If you want the avatars to fit in the profile box without scrolling, do this:
Open the file:
Display.template.phpFind
(in red):
// Show avatars, images, etc.?
if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
echo '
<td valign="top" style="overflow: hidden;" class="smalltext">
<div style="overflow: auto; width: 65px; height: 65px;">', $message['member']['avatar']['image'], '</div>
</td>';
Replace with
(in red):
// Show avatars, images, etc.?
if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
echo '
<td valign="top" style="overflow: hidden;" class="smalltext">
<div style="width: 100%; height: 100%;">', $message['member']['avatar']['image'], '</div>
</td>';
We did deleted this value:
overflow: auto;We edited this value:
Before=
width: 65px; height: 65pxAfter=
width: 100%; height: 100%Now the avatar will show up without scroll bars.

Make sure you set your avatar size limit in Admin controls. And you're set .