thanks, and this helped: Using SVG Logos with the WordPress Customizer
per the link above, I just put this in my child theme functions.php:
//* Add support for custom flexible header
add_theme_support( ‘custom-header’, array(
‘flex-width’ => true,
‘width’ => 260,
‘flex-height’ => true,
‘height’ => 100,
‘header-selector’ => ‘.site-title a’,
‘header-text’ => false
) );
-
This reply was modified 8 years ago by erikm.