Hello june,
The WEN Business pro theme does does crop the image uploaded to the logo section in the customizer to 200 px in width to maintain the theme design uniformity in the header.
However, if you wish to upload the image without cropping, you can achieve the request with some custom code.
paste in the following code in your child theme’s functions.php file :
/**
* [wen_business_pro_child_logo_size_fixes description]
* @return [type] [description]
*/
function wen_business_pro_child_logo_size_fixes(){
/*
* Enable support for custom logo.
*/
remove_theme_support( 'custom-logo' );
/*
* Enable support for custom logo.
*/
add_theme_support( 'custom-logo', array(
'flex-width' => true,
'flex-height' => true,
) );
}
add_action( 'after_setup_theme', 'wen_business_pro_child_logo_size_fixes', 20 );
This will remove the logo width restriction and will output the original image size logo.
You will need to re-upload the logo and click on “Skip cropping” button to get the full size logo image.
Note : After using the code, please make sure that you upload logo image of appropriate size as bigger logo images may cause increase in header width and deteriorated menu.