This article explains how to move the navigation menus into the header of the genesis framework.
<?php /* remove the opening php after putting into your themes functions.php file */ /** remove secondary nav menu */ remove_action( 'genesis_after_header', 'genesis_do_subnav' ); /** add secondary nav menu before the optional aside, increasing this value to 11 will put it afterwards */ add_action( 'genesis_header', 'genesis_do_subnav', 9 ); /* remove the primary menu /* remove_action( 'genesis_after_header', 'genesis_do_nav' ); /* and add it after the subnav and after the optional sidebar */ add_action( 'genesis_header', 'genesis_do_nav', 11);