Skip to content

Instantly share code, notes, and snippets.

@marisqaporter
Last active January 28, 2016 03:47
Show Gist options
  • Save marisqaporter/95b1f5d20836e1a32c19 to your computer and use it in GitHub Desktop.
Save marisqaporter/95b1f5d20836e1a32c19 to your computer and use it in GitHub Desktop.
Edit the header size (css and php) in Genesis.
//edit lines 84-89 of functions.php of your genesis parallax theme to your logo's height and width
add_theme_support( 'custom-header', array(
'width' => 300,
'height' => 70,
'header-selector' => '.site-title a',
'header-text' => false,
) );
/*set to your logo png or graphic width*/
.title-area {
width: 300px;
}
/* same as above */
.header-image .site-title > a {
max-width: 300px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment