Dear Kim,
you will need to edit the “header.php”. Please search there for the following code (it is located just at the end of the file):
<?php if ( is_home() || is_front_page() ) { ?>
<?php if ( get_header_image() != '' && $naturespace_options_db['naturespace_display_header_image'] != 'Everywhere except Homepage' ) { ?>
<div class="header-image">
<img class="header-img" src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" />
<div class="header-image-container">
<div class="header-image-text-wrapper">
<div class="header-image-text">
<?php if ( $naturespace_options_db['naturespace_header_image_headline'] != '' ) { ?>
<p class="header-image-headline"><?php echo esc_attr($naturespace_options_db['naturespace_header_image_headline']); ?></p>
<?php } if ( $naturespace_options_db['naturespace_header_image_link_url'] != '' && $naturespace_options_db['naturespace_header_image_link_text'] != '' ) { ?>
<p class="header-image-link-wrapper"><a class="header-image-link" href="<?php echo esc_url($naturespace_options_db['naturespace_header_image_link_url']); ?>"><?php echo esc_attr($naturespace_options_db['naturespace_header_image_link_text']); ?></a></p>
<?php } ?>
</div>
</div>
</div>
</div>
<?php } ?>
<?php } else { ?>
<?php if ( get_header_image() != '' && $naturespace_options_db['naturespace_display_header_image'] != 'Only on Homepage' ) { ?>
<div class="header-image">
<img class="header-img" src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" />
</div>
<?php }} ?>
and move it just above this element:
<div class="header-content-wrapper">
Best regards,
Tomas Toman