Hi,
You will need to do two things:
1) Use this CSS:
.sf-icon.image-display {
max-width: 150px;
width: 150px;
height: 150px;
}
2) Open this file: /wp-content/plugins/swift-framework/includes/page-builder/shortcodes/icon-box.php
and locate this line: $image_object = spb_image_resizer( $img_url, 70, 70, true, false );
change that to: $image_object = spb_image_resizer( $img_url, 150, 150, true, false );
.
I’ll need to get a filter added for this so you can change this from within the theme itself. Currently when you update the SF plugin this change will be lost.
Thanks.