Hi Char,
Change this:
<?php hybrid_get_menu( 'secondary' ); // Loads the menu/secondary.php template. ?>
</header><!-- #header -->
<?php if ( get_header_image() && !display_header_text() ) : // If there's a header image but no header text. ?>
<a href="<?php echo home_url(); ?>" title="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" rel="home"><img class="header-image" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a>
<?php elseif ( get_header_image() ) : // If there's a header image. ?>
<img class="header-image" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
<?php endif; // End check for header image. ?>
<div id="main" class="main">
to this:
</header><!-- #header -->
<?php if ( get_header_image() && !display_header_text() ) : // If there's a header image but no header text. ?>
<a href="<?php echo home_url(); ?>" title="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" rel="home"><img class="header-image" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a>
<?php elseif ( get_header_image() ) : // If there's a header image. ?>
<img class="header-image" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
<?php endif; // End check for header image. ?>
<?php hybrid_get_menu( 'secondary' ); // Loads the menu/secondary.php template. ?>
<div id="main" class="main">
Effectively, moving the secondary menu code to just above the #main div.
<?php hybrid_get_menu( 'secondary' ); // Loads the menu/secondary.php template. ?>
All in the header.php of course. Best to do this with a child theme instead of in your parent, to be sure you don’t lose anything during an update ??
If you need a little help with child themes, we have a couple videos step by step here:
https://www.1stwebdesigner.com/wordpress/create-responsive-wordpress-site-child-theme-tutorial/
Cheers!
spence