Ugh, my apologies! I hate to reopen this one more time, but....
There's one more place in Groups where I see the member profile images are still blurry/toosmall/fuzzy.
On the Group's main page, there's a block on the right column with a grid of small member profile images.
They used to be nice a clear... now seem smaller and fuzzier.
See my screenshot below.
I've figured out that these images may be controlled in the jrGroup item_detail.tpl. It 'seems to be' where it calls for user images to be "xsmall" in two lines. Yet when I change the code to "small" instead of "xsmall", it simply makes the images TOO big, and still blurry. Can you help me? Note also that I have two custom SKIN override templates called jrGroup_item_detail.tpl and jrGroups_item_detail.tpl ...I suspect the one called "jrGroups"-with an s, is a 'mistake template' from way long ago, but I've always been afraid to just delete it.
Here's the code in question in my jrGroup item_detail.tpl , and below is the screenshot of where the problem shows up.
<div class="title">
<h3>{jrCore_lang module="jrGroup" id=13 default="Members"}</h3> <strong><small><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/members/{$item._item_id}/{$item.group_title_url}">{jrCore_lang module="jrGroup" id=70 default="View All"}</a></small></strong>
</div>
<div class="item">
{foreach $item.group_member as $id => $member}
{if $member@index < $_conf.jrGroup_max_images}
{if $member.member_status == 0}{jrCore_lang module="jrGroup" id=71 default="pending" assign="status"}{elseif $member.member_status == 1}{jrCore_lang module="jrGroup" id=63 default="active" assign="status"}{else}{jrCore_lang module="jrGroup" id=72 default="pending deletion" assign="status"}{/if}
{if jrProfile_is_profile_owner($item._profile_id)}
<a href="{$jamroom_url}/{$murl}/user_config/group_id={$item._item_id}/user_id={$member.member_user_id}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$member.member_user_id size="xsmall" crop="auto" title="@{$member.profile_name} ({$status})" alt="@{$member.profile_name} ({$status})" class="img-{$member.member_status}" style="float:left"}</a>
{else}
{if $member.member_status != 0}
<a href="{$jamroom_url}/{$member.profile_url}">{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$member.member_user_id size="xsmall" crop="auto" title="@{$member.profile_name}" alt="@{$member.profile_name}" class="img-1" style="float:left"}</a>
{/if}
{/if}
{/if}
{/foreach}
<div style="clear:both"></div>
</div>
--
...just another satisfied Jamroom customer.
Migrated from Ning to Jamroom June 2015