Hi there,
you can unhook the secondary navigation and rehook it eg. this snippet moves it to below the header element:
add_action( 'after_setup_theme','lh_move_secondary_navigation' );
function lh_move_secondary_navigation() {
remove_action( 'generate_after_header', 'generate_add_secondary_navigation_after_header', 7 );
add_action( 'generate_after_header', 'generate_add_secondary_navigation_after_header', 15 );
}
This line of the code is where it hooks back in:
add_action( 'generate_after_header', 'generate_add_secondary_navigation_after_header', 15 );
You can change generate_after_header to the same hook you have used for your Bredcrumb – as long as the Priority of 15 in this code is greater than the breadcrumbs priority ( which by default in a Hook element would be 10 ) then it will appear after it.