Last active
January 28, 2016 03:47
-
-
Save marisqaporter/95b1f5d20836e1a32c19 to your computer and use it in GitHub Desktop.
Edit the header size (css and php) in Genesis.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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, | |
) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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