add_action( 'init', 'woo_nav_to_the_right_function', 10 );
 
function woo_nav_to_the_right_function () { 
    remove_action( 'woo_header_after','woo_nav', 10 ); 

    add_action( 'woo_header_inside','woo_nav', 10 );
} 

For CSS

#header #navigation { float: right; max-width: 68%; clear: none; }