Take a look in your functions.php file and look for this –
`/** After Header Wrap */
add_action(‘genesis_after_header’, ‘before_after_wrap’);
function before_after_wrap() {
echo ‘‘;
}`
Then change that to this –
`/** After Header Wrap */
add_action(‘genesis_after_header’, ‘before_after_wrap’, 1);
function before_after_wrap() {
echo ‘‘;
}`
The difference is a “priority” added which moves the `` up above the nav. In some cases people want the header and nav together…..but in this case, for what you’re doing its best to separate the two.