Header resizing (I have read all the other posts on it)
-
I am trying to get a header across the top of the twenty twelve theme. It keeps resizing to the 950 by 250 size.
What I have done:
-I have uploaded bigger images and they get scaled down.
-edited functions.php with:
function twentytwelvechild_custom_header_setup() {
$header_args = array( ‘height’ => 250, ‘width’ => 1100 );
add_theme_support( ‘custom-header’, $header_args );
}
add_action( ‘after_setup_theme’, ‘twentytwelvechild_custom_header_setup’ );
***removed the open and close php statement to avoid issues
-I have played with values in the header.php and customheader.php and adjusted values to 100% as stated in another thread as a solution.I have reset everything except the above php code since nothing worked. the site is ladyeuphei.com and I want that banner at the top to stretch all the way across.
Thank you for your time and effort!
- The topic ‘Header resizing (I have read all the other posts on it)’ is closed to new replies.