I have created the first level navigation using the Dockbar's Add-->Page option.The pages are Home,Contacts,Opportunities,Registration.Now i want to create the second level navigation under the Contacts page.When i click on the Contacts page it should display the below pages horizontally.
Create Contact,View Contacts,Import Contacts like this it should display.How to do this.If you are not able to understand my problem i will share my screenshot.But i dont know how to share it.Sorry for my poor English.
First Edit:
Hi, I am using the classic theme in my liferay.Now i am able to see the second level navigation.But not able to see the third level navigation.And the second level navigation is displaying in drop-down format. But my requirement is
I need to display the navigations in horizontal format not in drop down format.My navigation.vm file code is
<nav class="$nav_css_class" id="navigation">
<h1>
<span>#language("navigation")</span>
</h1>
<ul>
#foreach ($nav_item in $nav_items)
#if ($nav_item.isSelected())
<li class="selected">
#else
<li>
#end
<a href="$nav_item.getURL()" $nav_item.getTarget()><span>$nav_item.icon() $nav_item.getName()</span></a>
#if ($nav_item.hasChildren())
<ul class="child-menu">
#foreach ($nav_child in $nav_item.getChildren())
#if ($nav_child.isSelected())
<li class="selected">
#else
<li>
#end
<a href="$nav_child.getURL()" $nav_child.getTarget()>$nav_child.getName()</a>
</li>
#end
</ul>
#end
</li>
#end
</ul>
</nav>
How to modify this file to achieve my requirement.And any other files i need to modify.