Logo size is being compressed

Home Support Blog Way Plus Logo size is being compressed

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #11702
    Raylin Weiser
    Participant

    hi there!

    I am having trouble with formatting my logo. The logo size requirements make my logo super small, blurry and distorted. Is there a way I can increase the recommended logo size?

    Thanks!!

    #11723
    nirav
    Keymaster

    Hello Raylin,

    We apologize for not being able to respond earlier.

    You can change the logo size using a child theme.
    You can create find step by step documentation to create the child theme.

    Once your child theme is ready, add below code in your child theme’s functions.php file.

    /*
    * Enable support for custom logo.
    */
    function blog_way_plus_setup_cust_logo(){
        add_theme_support( 'custom-logo', array(
            'height'      => YOUR_LOGO_HEIGHT,
            'width'       => YOUR_LOGO_WIDTH,
        ) );
    }
    add_action( 'after_setup_theme', 'blog_way_plus_setup_cust_logo',20 );

    Hope it will work for you.
    Thank you

    • This reply was modified 4 years, 11 months ago by nirav.
    #13280
    Anonymous
    Inactive

    very informative for me thanks for the nice sharing

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.