Hi Wes,
I’ve got a unique navigation for the Home page. I’ve styled it with a Custom Menu and assigned it to the Secondary Navigation. I’m able to position it below Welcome using this code in functions.php:
// Reposition the Secondary Navigation
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
add_action( 'genesis_before_content', 'genesis_do_subnav' );
The above code places the nav into the content area.
The challenge for me is that I need to insert some text beneath the navigation, before the footer widgets. So, I want the sequence to ideally be this:
header
welcome
navigation
home-middle-wide
footer-widgets
Is there a hook for this? I tried using the various landing page widgets, but they all place the content above the nav, rather than below it.
many thanks!