Hi @Mouvance web,
Thank you for the clarification.
For that you need to create a child theme. Please visit this LINK to find more details on creating the child theme. Then in child theme’s functions.php add the following function.
function catchresponsive_custom_header() {
$options = catchresponsive_get_theme_options();
if ( 'light' == $options['color_scheme'] ) {
$default_header_color = catchresponsive_get_default_theme_options();
$default_header_color = $default_header_color['header_textcolor'];
}
else if ( 'dark' == $options['color_scheme'] ) {
$default_header_color = catchresponsive_default_dark_color_options();
$default_header_color = $default_header_color['header_textcolor'];
}
$args = array(
// Text color and image (empty to use none).
'default-text-color' => $default_header_color,
// Header image default
'default-image' => get_template_directory_uri() . '/images/headers/buddha.jpg',
// Set height and width, with a maximum value for the width.
'height' => 300,
'width' => 1200,
// Support flexible height and width.
'flex-height' => true,
'flex-width' => true,
// Random image rotation off by default.
'random-default' => false,
// Callbacks for styling the header and the admin preview.
'wp-head-callback' => 'catchresponsive_header_style',
'admin-head-callback' => 'catchresponsive_admin_header_style',
'admin-preview-callback' => 'catchresponsive_admin_header_image',
);
$args = apply_filters( 'custom-header', $args );
// Add support for custom header
add_theme_support( 'custom-header', $args );
}
Regards,
Mahesh