Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #122120
    June
    Participant

    Hi 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:
    Logo on site with poor quality display

    Below is a screenshot of the logo without before being uploaded with a much better quality:
    Logo quality before upload

    Thanks,
    June

    #122139
    wensolutions
    Participant

    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.

    #122170
    June
    Participant

    Hi 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,
    June

    #122213
    wensolutions
    Participant

    Hello 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 !!

    #122244
    June
    Participant

    Thanks WEN Solutions

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Logo quality too low’ is closed to new replies.