User Birthday Display
Using Jamroom
If this is what you were referring to in your support email, try changing the code in the Gallery modules widget_birthdays.tpl file to this:
{if isset($_items)}
{foreach $_items as $item}
{if $item@first || ($item@iteration % 4) == 1}
<div class="row">
{/if}
<div class="col3{if $item@last || ($item@iteration % 4) == 0} last{/if}">
<div class="p10">
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="large" crop="portrait" class="img_scale" style="margin:0" alt="@`$item.user_name`" title="@`$item.user_name`"}<br>
<a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_url}</a>
<br>
{if $item.user_birthdate_today == 1}
<strong>{jrCore_lang module="jrBirthday" id=7 default="Today"}</strong>
{else}
{$item.user_birthdate_epoch|jrCore_date_format:"%B %e"}
{/if}
</div>
</div>
{if $item@last || ($item@iteration % 4) == 0}
</div>
{/if}
{/foreach}
{else}
<div class="item">
{jrCore_lang module="jrBirthday" id=8 default="No birthdays found"}
</div>
{/if}
Hope this helps!