This theme already has an installable child theme. In the theme itself is a folder named “child-theme” and inside that is a child theme that you can install.
I created the theme to have the WP header show just on the front page but you also have the option to add the image to the other pages using the banner widget position.
If you use the child theme to make the modification, you can copy the sidebar-header.php over to the child theme, then remove the php code inside this container:
<div class="row-fluid">
</div>
Replace it with this:
<?php if ( is_active_sidebar( 'banner' ) ) : ?>
<aside id="lum-banner" class="span12">
<?php dynamic_sidebar( 'banner' ); ?>
</aside>
<?php endif; ?>
<?php $header_image = get_header_image();
if ( ! empty( $header_image ) ) : ?>
<aside id="lum-wpheader" class="span12">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo esc_url( $header_image ); ?>" class="lum-header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php bloginfo('name'); ?>" /></a>
</aside>
<?php endif; ?>