I'm trying to add a custom menu over my WordPress site inside a template page. I've successfully registered new menu with this code
function register_my_menu() {
register_nav_menu('new-menu',__( 'New Menu' ));
}
add_action( 'init', 'register_my_menu' );
Now I've added this menu inside page.php and successfully getting menu items over my wordpress pages
< ? php wp_nav_menu( array( 'theme_location' => 'new-menu' ) ); ?>
The question is I'm seeing the menu items vertical like this http://prntscr.com/dt6300 . How can I style my custom menu? If someone could give a hint!