I have css menu which is of two level mean One main and other is its subsequest .for example
Home--Link1
Link2
Link3
Link4
But Now I have need to extend this menu to more subsequent link like this
Home--Link1--SLink1
Link2 SLInk2
Link3 SLink3
Link4--Slink1
Slink2
But I am unable to unserstAND HOW TO CONVERT THE MENU TO MUltilevel please any one help me to do this Here is My Css Code
#sddmSFPL
{ margin: 0;
padding: 0;
z-index: 30}
#sddmSFPL li
{ margin: 0;
padding: 0;
list-style: none;
font: 11px Tahoma}
#sddmSFPL li a
{ display: block;
margin: 0 1px 0 0;
padding: 4px 10px;
width: 100px;
background: #FFFFFF;
color: #222222;
text-align: Left;
text-decoration:none}
#sddmSFPL li a:hover
{ background: #EEEEEE;
color:#222222;
border:solid 1px #EEEEEE;
padding:3px 9px;
border-left-color:#DD4b39;
}
#sddmSFPL div
{ position: absolute;
visibility: hidden;
margin:-24px 120px;
padding:4px 10px;
background: #FFFFFF;
border: 1px solid #EEEEEE}
#sddmSFPL div a
{ position: relative;
display: block;
margin: 0 0 0 0;
padding: 4px 10px;
width: auto;
white-space:normal;
text-align: left;
text-decoration: none;
background: #FFFFFF;
color: #222222;
font: 11px Tahoma}
#sddmSFPL div a:hover
{ background: #EEEEEE;
color: #222222;
padding:3px 9px; }
And here are the link in menu which i am want to convert into multilevel
<ul id="sddmSFPL">
<li>
<a href="#" id="MilkReports" runat=server >Milk Reports</a>
<div id="m29" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="http://sml.com.pk/sfpl/milk.php" target=_blank >Milk Receipt Dashboard</a>
<a href="http://foods.shakarganj.com.pk/pdf/procurement_structure.pdf" target=_blank> Milk Procurement Structure</a>
</div>
</li>
</ul>
And here is my JS code to open and close the menues
<!--
var timeout = 2000;
var closetimer = 0;
var ddmenuitem = 0;
// open hidden layer
function mopen(id)
{
// onmouseover="timer1=setTimeout(function(){show('tip1');}, 500);"
//onmouseout="clearTimeout(timer1);"
// cancel close timer
mcancelclosetime();
// close old layer
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
// get new layer and show it
ddmenuitem = document.getElementById(id);
ddmenuitem.style.visibility = 'visible';
}
// close showed layer
function mclose()
{
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}
// go close timer
function mclosetime()
{
closetimer = window.setTimeout(mclose, timeout);
}
// cancel close timer
function mcancelclosetime()
{
if(closetimer)
{
window.clearTimeout(closetimer);
closetimer = null;
}
}
// close layer when click-out
//document.onmouseover = mclose;
// -->
