Hello Alok,
Please check the Menu Settings at the bottom of the menu page if your theme provides the secondary menu or not by going to Appearance > Menus.
If not then you can create just static menu by editing the core files. But you can rather try one among these plugins to create a new menu in your header:
https://wordpress.org/plugins/search.php?q=adding+menu+in+header
Thank you.
your given link helful to add diffrent header at diffrent page,but that is not my problem.i am using twenty thirteen theme,i want to put another menu just below the main menu.
I am new at wordpress,m nt able to customize core files.
!!!!waiting for help!!!!!
Hello,
If you want to add another menu, then you can just add static pages there in menu, not drop down menus by editing core files.
For adding a menu below the current one, you need to create a child theme first so that you can keep all your changes even after update.
After creating a Child Theme, please go to Appearance > Editor > header.php and look for this line there:
</header><!-- #masthead -->
You need to add this code there before this line:
<div class="secondary_menu">
<nav class="main-navigation">
<a href="google.com">Google</a>
<a href="facebook.com">Facebook</a>
</nav>
</div>
And then try adding this in your Custom CSS:
.secondary_menu .main-navigation > a {
padding: 14px 20px;
}
.secondary_menu {
background: none repeat scroll 0 0 #ffa534;
}
Thank you.
Thanx a lot,it helps me a lot,is there any plugin who provodes customizable menu with adjustable menu-position????
Thanks
Hello,
I have not tried any such plugins but you can try some from this:
https://wordpress.org/plugins/search.php?q=menu
Thank you.
Thanks for your support and guidence.