Viewing 1 replies (of 1 total)
  • Hello Evelynart,

    You can customize the theme as per your requirement by creating a child theme. You can find detailed documentation to create a child theme here.

    After creating child theme please paste the below mentioned code in child theme’s functions.php file.

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

    Hope it will work for you.

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘Logo restriction’ is closed to new replies.