Bonjour à tous, j'ai un petit problème, je voudrais faire un menu déroulant avec au moins 3 niveau et je n'y arrive pas (et oui autrement je ne posterais pas ici :p ). J'ai suivi le tuto de alsa créations, très bien fait au demeurant, et je l'ai arrangé à ma sauce, mais je bloque pour le 3eme niveau:

Voici mon code :

HTML/PHP :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
 
<dl>	
  <dt onmouseover="javascript:montre('smenu3');">Planning</dt>
	<dd id="smenu3" onmouseover="javascript:montre('smenu3');" onmouseout="javascript:montre('');">
	   <ul>
	        <li><a href="index.php?page=t1">T1</a></li>
	        <li><a href="index.php?page=t2">T2</a></li>
	        <li><a href="index.php?page=t3">T3</a></li>
	        <li><a href="index.php?page=t4">T4</a></li>
	   </ul>
	</dd>
</dl>
et le CSS :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
 
body {
 font-size: 12px; 
 font-family: Times New Roman, Times, serif; 
 color: #000000;
}
 
dl, dt, dd, ul, li 
{
 margin: 0;
 padding: 0;
 list-style-type: none;
}
 
#menu {
 position: absolute; 
 top: 79;
 left: 12;
 z-index:100;
 width: 100%; 
}
 
#menu dl {
 float: left;
 width: 11%;
}
 
#menu dt {
 cursor: pointer;
 text-align: center;
 font-weight: bold;
 background: url("../images2/bandeau4.jpg"); 
 border: 1px solid gray;
 margin: 1px;
 }
 
#menu dd {
 display: none;
 border: 1px solid gray;
}
 
#menu li {
 font-weight: bold;
 text-align: left;
 background: #D1ECE2;
}
 
#menu li a, #menu dt a {
 color: #000;
 text-decoration: none;
 display: block;
 height: 100%;
 border: 0 none;
}
 
#menu li a:hover, #menu li a:focus, #menu dt a:hover, #menu dt a:focus {
 background: #FFF;
}
 
#site {
 position: absolute;
 z-index: 1;
 top : 70px;
 left : 10px;
 color: #000;
 background-color: #ddd;
 padding: 5px;
 border: 1px solid gray; 
}

merci d'avance à vous pour vos réponses.