Skip to content
Bill Erickson edited this page Apr 23, 2018 · 7 revisions

Custom Header Support

If you would like to add custom header support, add this to /inc/genesis-changes.php (change the dimensions as required):

add_theme_support( 'genesis-custom-header', array( 'width' => 600, 'height' => 135 ) );

And add this to _site-header.scss:

.header-image {

	.site-title,
	.site-description {
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
	}
}
Clone this wiki locally