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.
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.