Bonjour,
(j'espère ne pas m'être trompé de cathégorie je ne savais pas trop où poser ma question)
j'ai un menu CSS / HTML que j'appel par une include php
menu :
Index.php (où le menu est appelé:
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
70
71
72
73
74
75
76
77
78
79
80
81 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <style media="all" type="text/css">@import "menu/menu_style.css";</style> <!--[if IE]> <style media="all" type="text/css">@import "menu/ie.css";</style> <![endif]--> <div class="nav"> <div class="table"> <ul class="select"><li><a href="#" target="_self"><b>LA COMMUNE</b></a> <div class="select_sub"> <ul class="sub"> <li><a href="#" target="_self">Situation géographique</a></li> <li><a href="#" target="_self">Plan</a></li> <li><a href="#" target="_self">Actualités</a></li> <li><a href="#" target="_self">Démographie</a></li> <li><a href="#" target="_self">Blasons</a></li> <li><a href="#" target="_self">Histoire</a></li> <li><a href="#" target="_self">Patrimoine</a></li> <li><a href="#" target="_self">Locations</a></li> <li><a href="" target="_self">Tourisme</a></li> </ul> </div> </li> </ul> <ul class="select"><li><a href="#" target="_self"><b>LA MAIRIE</b></a> <div class="select_sub"> <ul class="sub"> <li><a href="#" target="_self">Coordonnées, horaires, permanences</a></li> <li><a href="#" target="_self">Equipe municipale</a></li> <li><a href="#" target="_self">Les commissions</a></li> <li><a href="#" target="_self">Prochaines réunions</a></li> <li><a href="#" target="_self">Comptes rendus municipaux</a></li> <li><a href="#" target="_self">Budgets</a></li> <li><a href="#" target="_self">Travaux</a></li> <li><a href="#" target="_self">Arrêtés municipaux</a></li> <li><a href="#" target="_self">Arrêtés préfectoraux</a></li> <li><a href="" target=""></a></li> </ul> </div> </li> </ul> <ul class="select"><li><a href="#" target="_self"><b>PRATIQUE</b></a> <div class="select_sub"> <ul class="sub"> <li><a href="#" target="_self">La jeunesse</a></li> <li><a href="#" target="_self">Les personnes âgées</a></li> <li><a href="#" target="_self">Social</a></li> <li><a href="#" target="_self">Loisirs</a></li> <li><a href="#" target="_self">Secteur paroissial</a></li> <li><a href="#" target="_self">Transport</a></li> <li><a href="#" target="_self">Déchetterie, collectes</a></li> </ul> </div> </li> </ul> <ul class="select"><li><a href="#" target="_self"><b>ACTIVITES ECONOMIQUES</b></a> <div class="select_sub"> <ul class="sub"> <li><a href="#" target="_self">Les artisans</a></li> <li><a href="#" target="_self">Les commerces</a></li> <li><a href="#" target="_self">Les entreprises</a></li> </ul> </div> </li> </ul> <ul class="select"><li><a href="#" target="_self"><b>VIE ASSOCIATIVE</b></a> <div class="select_sub"> <ul class="sub"> <li><a href="#" target="_self">Aînés rureaux</a></li> <li><a href="#" target="_self">Beaucéan</a></li> <li><a href="#" target="_self">Comité d\\\'administration</a></li> <li><a href="#" target="_self">La forge</a></li> </ul> </div> </li> </ul> <ul class="select"><li><a href="#" target="_self"><b>LIENS</b></a> </li> </ul> </div> </div>
Comme vous pouvez voir, j'ai même fait un tableau assez haut pour voir si ce n'était pas un pb d'espace en hauteur... Mais mes sous menus n'apparaîssent pas !
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 <html> <!-- Date de création: 28/07/2009 --> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title></title> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="author" content="Taga1"> <meta name="generator" content="WebExpert 6"> </head> <body> <?php include("menu.html"); ?> <br /> <br /> <table summary="" border="1" width="920px" height="200px"> <tr> <td><?php include("menu.html"); ?></td> </tr> </table> </body></html>
Pouvez vous me dire pourquoi ? Tout est uplodé sur le serveur...![]()
Partager