Nova skin showing different sized images problem
Installation and Configuration
That is due to the way the jrCore_module_function is setup in your skins/jrNova/index_artists_row.tpl. You can make the images a max-width and max-height by changing this:
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$row._profile_id size="medium" crop="auto" alt=$row.profile_name title=$row.profile_name class="iloutline img_shadow"}to this:
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$row._profile_id size="medium" crop="auto" alt=$row.profile_name title=$row.profile_name class="iloutline img_shadow" style="max-width:196px;max-height:196px;"}