- This topic has 4 replies, 2 voices, and was last updated 5 years, 8 months ago by
June.
-
AuthorPosts
-
September 13, 2017 at 11:58 am #122120
June
ParticipantHi WEN Solutions,
I uploaded my website logo but the quality is too low on the site after the upload. I suspect it is being compressed/converted in the upload process. How can I go about uploading my logo so that it will display a better quality?
Below is a screenshot of the logo with poor quality after it was uploaded to the site:
Below is a screenshot of the logo without before being uploaded with a much better quality:
Thanks,
JuneSeptember 14, 2017 at 3:02 am #122139wensolutions
ParticipantHello 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.
September 14, 2017 at 8:45 am #122170June
ParticipantHi WEN Solutions,
Thanks for the feedback.
Is there a way to add the Navigation menu to the header (I customized the header to be sticky) so that the menu will display on the right side of the logo?
Thanks,
JuneSeptember 15, 2017 at 12:09 am #122213wensolutions
ParticipantHello june ,
The theme does have the navigation menu in the header that can be set to sticky from Admin Dashboard > Appearance > Customize > Menus > Menu Options and unchecking the “Disable Sticky in Primary Menu” option.
This should give you primary sticky menu in the header by default.
If you have made any customization for the functionality, we would require to check your Website URL to visualize the issue further and suggest some precise fix.
Hope this Helps,
Best Regards !!
September 15, 2017 at 9:56 am #122244June
ParticipantThanks WEN Solutions
-
AuthorPosts
- The topic ‘Logo quality too low’ is closed to new replies.