Support » Themes and Templates » Changing the header width

  • 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!

Viewing 1 replies (of 1 total)
  • as a pure formatting issue, this question might be better asked at a css forum like http://csscreator.com/forum

    generally, remove the left/right padding from the style of .site, and add some margin to the style of #main, and adjust the .site-content width so the sidebar fits in …

    using a browser inspection tool such a Firebug might help you to identify what to edit.

Viewing 1 replies (of 1 total)
  • The topic ‘Changing the header width’ is closed to new replies.