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 5 years, 8 months ago by nirav.