06/02/2015 at 4:07 pm
#336408
Keymaster
@ Alex
Excerpt Plus forces the logo size so the layout is not broken. The size can be changed in the card.php
file found here:
../wp-content/uploads/connections-templates/excerpt-plus/
After you do, you will have to adjust the CSS to account for the larger logo size.
Alternatively, you can change the default crop mode like so:
Install the Code Snippet plugin.
Add a new snippet with the following code:
function cn_image_crop_mode_2( $atts ) {
$atts['zc'] = 2;
return $atts;
}
add_filter( 'cn_output_default_atts_image', 'cn_image_crop_mode_2' );
Save and activate the new snippet.
Hope that helps!