Thanks for your help wp-21 and I think, though I’m not certain, that I should also thank you for letting me struggle through this.
I was able to insert my logo image in the header, to the left of the title and tagline, by doing the following inside the header.php in my child theme:
<hgroup>
<h1 class="header-image"><span><?php $header_image = get_header_image();
if ( ! empty( $header_image ) ) : ?>
<a>"><img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="MY WEBSITE" /></a>
<?php endif; ?></span>
<h1 class="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</hgroup>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code has now been permanently damaged by the forum’s parser.]
Then adding the following as the last command under /*header*/ in the css.styles sheet (child theme):
.header-image {
width: auto;
float: left;
margin: auto 20px 10px auto;
}
.site-header h1,
.site-header h2 {
clear: none;
}
It’s interesting how there’s, apparently, no ‘one way’ how to do all this. Thanks.