in the alaries/ribbon_fullsize/index.php file look for the following:
$gallery = get_gallery(get_mediarss_url('gallery=' . $pg_id . '&thumb=62c&full=782p'));
the "full=782p" tells the gallery to use the 782 proportional image that is defined in the Admin/common/properties.php file
you can change that to use one of the other proportional sized images:
$gallery = get_gallery(get_mediarss_url('gallery=' . $pg_id . '&thumb=62c&full=163p'));
or one of the cropped images:
$gallery = get_gallery(get_mediarss_url('gallery=' . $pg_id . '&thumb=62c&full=132c'));
If none of the sizes meet you needs, you can add a size to the properties.php file, then regenerate the images by updating the watermark to recreate the thumbnails.


