Navigation Menu logo size

Home Support Business Point Plus Navigation Menu logo size

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #14629
    rgrullon
    Participant

    Good afternoon

    i want to change the size to make it Bigger my logo in the menu navbar
    but if i upload a bigger img, it gets cutted, and the default size make my logo small.
    please help me out.

    Greetings

    #14690
    nirav
    Keymaster

    Hello There!

    Hope you are doing good!

    Please create a child theme by following steps mentioned here.
    After that just paste below-mentioned code in the ‘function.php’ file of the newly created child theme

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

    We have given a fixed size logo as logo with the bigger size might affect the look of the menu/website.

    Hope this helps.

    Have a great day ahead!

    Thanks and Regards,
    Team ProDesigns

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