Bonjour
Mon application est orientée grâce à un menu horizontal :
Search | Create | Admin part | Help Guide
Jusque là je suis arrivée à mettre en place le css à peu près parce que j'ai toujours un problème quand je clique sur le lien (cf. b Menu : Comment une fois cliqué le style peut rester figé ? )
Maintenant, une fois dans la partie Admin part, je veux avoir un sous menu horizontal à nouveau qui se trouverait en dessous du menu précédent mais qui n'aurait pas du tout le même style. Ce menu serait :
Users management | Administrator Management
Seulement voilà, j'ai tellement de css que je suis entrain de m'embourber et je n'arrive vraiment pas à le mettre en place, pourriez vous m'aider ?
Voilà le code de mon css :
Merci d'avance
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159 <html> <head> <title>Applet for complaint management</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <style type="text/css"> body { margin: 10px 0 ; padding: 0 ; text-align: center ; background : white; } div#center { /* Pour éviter la superposition du pied de page et du contenu : */ padding-bottom: 50px; overflow: auto; } div#conteneur { width: 780px ; height:690px; margin: 0 auto ; text-align: left ; border: 2px solid darkblue; background: #fff ; } h1#header { height: 200px ; font-size:30; font-weight:200; color:darkblue; text-align:right; background: url(img/header.bmp); padding : 50px 50px 50px 50px; margin-color: darkblue; margin-bottom : 0px; } ul#menu { height: 35px ; margin: 0 ; padding: 0 ; background: url(img/menu.bmp); list-style-type: none ; } ul#menu li { float: left ; text-align: center ; margin-top:5px; } ul#menu li a { font-size: 20; font-family:Helvetica; font-weight:200; width: 175px ; line-height: 25px ; color: white ; display: block ; text-decoration: none ; border-right: 2px solid white; } ul#menu li a:hover { background: white; color : darkblue; height: 35px; margin-left: 10px; } div#contenu { margin-top : 2px; padding: 15px 30px 0 100px ; background: url(img/body.bmp); margin-bottom : 2px; height:360px; } div#contenu h2 { padding-left: 25px ; line-height: 25px ; font-size:14; font-family:Helvetica; font-weight:300; color: darkblue ; border-bottom: 1px solid darkblue; } div#contenu p { text-indent: 2em ; line-height: 1.7em ; color : darkblue; font-size:13; font-family:Helvetica; font-weight:300; margin-bottom:2px; } div #contenu td { color : darkblue; font-size:13; font-family:Helvetica; font-weight:400; text-align:center; } div #contenu th { color : darkblue; font-size:14; font-family:Helvetica; font-weight:600; text-align:center; } div#footer { text-align:center; width: 100%; color: white; } </style> </head> <body> <?php include"Header.html"; include"Menu.html"; include"Admin_part.html"; include"Footer.html"; ?> </body> </html>
Partager