Header with custom image:How to change the white colour of background with black
-
Hello, I like the Responsive mobile theme. I use a custom image in a header which use a black background. I’d like to change the white colour of a header background with the black colour, because now, it doesn’t look good. I’ve been searching for a code line in a functions-custom-header.php file. I see the lines:
[code]
if ( ! function_exists( 'responsive_mobile_admin_header_image' ) ) {
/**
* Custom header image markup displayed on the Appearance > Header admin panel.
*
* @see responsive_mobile_custom_header_setup().
*/
function responsive_mobile_admin_header_image() {
$style = sprintf( ' style="color:#%s;"', get_header_textcolor() );
?>
<div id="headimg">
<?php if ( get_header_image() ) : ?>
" alt="">
<?php endif; ?>
</div>
<?php
}
[/code]I’ve been trying to add here a code line:
[code]
<body style="background-color:#000000">
[/code]Also I’ve been trying to edit a style.css file, section header, and it doesn’t work neither. I am not fluent with css/html. Can you help me?
Best regards!
PS. You can see by yourself how does it look like now and what do I want to get to:
https://bit.ly/2jDnMjW
- The topic ‘Header with custom image:How to change the white colour of background with black’ is closed to new replies.