So, I actually have a secondary navigation menu on my footer, thanks to this code I copied from the forum:
add_action('after_setup_theme','generate_navigation_below_footer_widgets');
function generate_navigation_below_footer_widgets()
{
remove_action( 'generate_before_header', 'generate_add_secondary_navigation_before_header', 7 );
add_action( 'generate_after_footer_widgets', 'generate_add_secondary_navigation_before_header', 7 );
}
It works fantastic, I have the menu on the footer. The problem is that the menu has a sub-menu, and the elements of the submenu dropdown, which clearly is a problem since it’s in the footer.

The question is, how can i make the sub-menu show upwards instead?