Structure Theme Change Header Size CSS

  • Unknown's avatar

    I was hoping someone could help me figure out what CSS to place in the customization window in order to expand the default header size on the Structure Theme from 960 x 120, to 960 x 200. I’ve tried various CSS examples – which successfully expand the header space – but after uploading the custom image to fill that larger space, the height is still cut-off after 120 px.

    Any help would be much appreciated!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Here is an example that will let you add a 960 x 200 pixel space for a header image in the structure theme:

    #header {
    	background: none;
    }
    #header h1 a {
    	background: url(http://s.wordpress.org/about/images/logos/wordpress-logo-32-blue.png);
    	display: block;
    	width: 960px;
    	height: 200px;
    }

    Replace the url() value with a link to your own image.

  • The topic ‘Structure Theme Change Header Size CSS’ is closed to new replies.