I need to have a customized menu on SharePoint 2010 which looks like :
Menu ->
Link1 departments
Link2 department1
Link3 department2
the links and departments are all in the same UL and each the first UL contain the links link is an LI . The departments is the second UL that contain LI also I need to have them on the same level.
This my code:
<li><a href="#">News</a>
<div class="sub">
<ul class="ul_border">
<li><a href="#">Navigation Link</a> </li>
<li><a href="#">Navigation Link</a> </li>
<li><a href="#">Navigation Link</a> </li>
</ul>
<ul>
<li><a href="#">Departments</a>
<ul class="sub_ul">
<li><a href="#">Department1</a></li>
<li><a href="#">Department2</a></li>
<li><a href="#">Department3</a></li>
<li><a href="#">Department4</a></li>
<li><a href="#">Department5</a></li>
<li><a href="#">Department5</a></li>
<li><a href="#">Department5</a></li>
</ul>
</li>
</ul>
</div>
</li>
using the navigation of sharepoint
I need to implement this menu on sharepoint 2010 but i need to have all these links on the same level.