@ Lea
That sounds about right, the scale and crop is center weighted so the logos are being processed correctly.
Since you’re uploading logos and not pictures of individuals, this will cause you a bit of image pre-processing.
See the exception relating to Slim Plus.
http://connections-pro.com/faqs/how-do-i-change-the-image-size/
Basically you’ll have to add white space around the logo to account for the scale and crop as described in the Slim Plus exception in the FAQ.
Possible an easier solution is to change the default crop mode that Connections uses internally.
To do this install the Code Snippets plugin.
Add a new snippet with the following code:
function cn_image_atts( $atts ) {
$atts['zc'] = 3;
return $atts;
}
add_filter( 'cn_output_default_atts_image', 'cn_image_atts' );
Save and activate the new snippet.
Now instead of a center weighted scaled and crop it’ll resize proportionally adjusting size of scaled image so there are no margins added.
