May 14, 2015 at 4:19 am
#24884
Theme Horse Support Team
Keymaster
Hi fabianogomes82,
You need some code customization too. We have cut the image size. If you want to display image in size 200 * 200 then you need some code customization. Go to the theme folder-> functionss.php on line no 140 you can see this code
add_image_size( 'icon', 100, 100, true ); //used for icon on business layout
and remove this code with
add_image_size( 'icon', 200, 200, true ); //used for icon on business layout
Then it works but before making any changes on it first of all create a child theme then only customize the code so that your customized code will not be lost. If you are unable to create a child theme then you need to edit the same things on functions.php each and every time you update to our theme.
Thank you!