Although I did not do this on the Genesis theme by default, I replaced the main title with text with only the logo. I posted how I did it on the Genesis forum , but here it is.
genesis_do_header , genesis_do_header , functions.php.
functions.php :
// Replace header hook to include logo
remove_action( 'genesis_header', 'genesis_do_header' );
add_action( 'genesis_header', 'genesis_do_new_header' );
function genesis_do_new_header() {
echo '<div id="title-area"><img src="your/logo/image.jpg" alt="Site Logo" />';
do_action( 'genesis_site_title' );
do_action( 'genesis_site_description' );
echo '</div>';
if ( is_active_sidebar( 'header-right' ) || has_action( 'genesis_header_right' ) ) {
echo '<div class="widget-area">';
do_action( 'genesis_header_right' );
dynamic_sidebar( 'header-right' );
echo '</div>';
}
}
CSS :
#title-area img {
float:left;
}
, . , , , , .