1
2
3
4
5
6
7
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

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