OG Image Issues
Using Jamroom
Any of these are valid;
Image Sizes:
24 => 24
xxsmall => 24
40 => 40
xsmall => 40
56 => 56
72 => 72
small => 72
96 => 96
icon96 => 96
128 => 128
icon => 128
196 => 196
medium => 196
256 => 256
large => 256
320 => 320
larger => 320
384 => 384
xlarge => 384
512 => 512
xxlarge => 512
800 => 800
xxxlarge => 800
1280 => 1280
original => (actual size)
Then you can add a width=?? height=?? to adjust from the base image to the size you actually want
{jrCore_module_function function="jrImage_display" module='jrProfile' type='profile_image' item_id=$item._profile_id size="icon" crop="auto" class="img_scale" alt=$item.profile_namee width="48px" height="48px" ext=$item.profile_image_extension _v=$item.profile_image_time}It would not make sense to have a size=1280 then width=48 height=48 because it would only show 48x48 but the 1280 image takes much longer to load and transfer than a smaller image.
Further adjustment can be made if you add a class to it class="some_class" then you can adjust the image via CSS
like this (the name some_class can be anything you like). This is example css:
.some_class{
width: 48px;
height: 48px;
padding: 5px;
border: 2px solid green;
}
CSS gives you a lot of control, almost too much control, because it can get confusing with all the available options.