How can I make the banner area shorter in size? I found this code, but I’m not sure this is where I need to edit it. Thank you.
function circumference_custom_header_setup() {
add_theme_support( ‘custom-header’, apply_filters( ‘circumference_custom_header_args’, array(
‘default-image’ => get_template_directory_uri() . ‘/images/banner-bg.jpg’,
‘random-default’ => false,
‘flex-width’ => true,
‘width’ => 2560,
‘flex-height’ => true,
‘height’ => 500,
‘uploads’ => true,
‘header-text’ => false,
‘admin-preview-callback’ => ‘circumference_admin_header_image’,
) ) );
}
add_action( ‘after_setup_theme’, ‘circumference_custom_header_setup’ );