There was a major issue with the custom header upload after the WordPress 3.9 release. That has been fixed in this latest update. If you have already customize your Borderline theme, please refer below for the header correction.
version 1.0.2
-Fix Header Issue
In the functions.php file.
//* Add support for custom header
add_theme_support( 'custom-header', array( 'width' => 1140, 'height' 180' ));
and change this code to:
//* Add support for custom header
add_theme_support( 'custom-header', array(
'width' => 1140,
'height' => 180,
'header-selector' => '.site-title a',
'header-text' => false
) );
Make changes in the style.css file.
.header-image .site-title a {
max-height: 180px;
width: 100%;
}
and change this code to:
.header-image .site-title a {
height: 180px;
width: 1140px;
margin: auto;
}
Make sure to save both files before closing theme. Now that your themes coding has been updated your header will upload correctly in the theme.
Thanks again :o)
Share Your Thoughts