I am trying this:
add_action('pagelines_before_branding_icons', 'add_topnav_menu');
function add_topnav_menu() {
wp_nav_menu( array('menu' => '$menu' ));
}
and it posts the nav bar inside header, but it loses all CSS and so, display it vertically. How can we keep intact the entire nav bar?










