Bonjours,

Je viens vers vous car j'ai un soucie avec mon menue déroulant, Quand je clic sur un lien principal ou sous menue et leur taille change.

J'ai codé le kit graphique et le menue mai je trouve pas l'erreur ou l'oublie !

je passe le lien tu kit en travaux http://team-rushkiller.fr/style-transparent/

et le CSS du menue : les before, after sont désactiver volontairement. je vous remercie d'avance pour vos réponses.

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
/*menue*/
 
#content-menue{
     width:960px;
     height:79px;
     margin-top:0px;
     margin-right:;
     margin:auto;
	 margin-bottom:0px;
	 background:;
}
 
#menue{
     margin:0px;
     margin-left:200px;
     float:left;
	 margin-top:px;
     padding:0px;
     list-style:none;	 
	 position:relative;
	 height:79px;
	 background:url() repeat-x;
	 display:inline-block;
 
}
/*
#menue:before{
     content:'';
     width:51px;
	 height:79px;
	 background:url() no-repeat;
	 position:absolute;
	 top:0px;
	 left:-51px;
}
 
#menue:after{
     content:'';
     width:50px;
	 height:79px;
	 background:url() no-repeat;
	 position:absolute;
	 top:0px;
	 right:-50px;
}*/
 
 
#menue li{
     float:left;
 
}
 
#menue li a {
     margin-top:10px;
     line-height:50px;
     display:block;
	 width:50px;
	 font-family:helvetica;
	 color:#fff;
	 text-decoration:none;
	 font-size:16px;
	 font-weight:bold;
	 padding:0px 20px;
	 border-bottom:0px solid #fff;
     border-top:0px solid #fff;
	 border-radius:8px;
	 background:url() top right  no-repeat;
}
 
#menue li a:hover {
     line-height:50px;
     display:block;
	 width:50px;
	 font-family:helvetica;
	 color:#B7F8B4;
	 text-decoration:none;
	 font-size:16px;
	 font-weight:bold;
	 padding:0px 20px;
	 border-bottom:0px solid #fff;
     border-top:0px solid #fff;
	 border-radius:8px;
	 background:url() top right no-repeat,url(images/hover.png) repeat;
}
 
 
#menue li ul{
     display:none;
     margin:0px;
     padding:0px;	 
     list-style:none;	 
	 position:absolute;
	 border-bottom:0px solid #fff;
	 border-radius:8px;
 
}
 
#menue li:hover ul{
     display:block; /* remplacer par block pour derouler */
}
 
#menue li ul li{
     float:none;
 
}
 
#menue li ul li a{
     display:block;
	 min-width:100px;
	 height:30px;
	 float:left;
	 line-height:30px;
     background:#B7F8B4;
	 border-top:1px solid #fff;
	 border-bottom:1px solid #fff;
	 border-right: 1px solid #fff;
	 border-left:1px solid #fff;
	 border-radius:8px;
	 color:#fff;
	 padding:0px 5px;
	 font-size:12px;
 
}
 
#menue li ul li a:hover{
     display:block;
	 line-height:30px;
	 height:30px;
	 float:left;
	 white-space : no-wrap;
	 background:url(images/hover.png) repeat;
	 border-top:1px solid #fff;
	 border-bottom:1px solid #fff;
	 border-right: 1px solid #fff;
	 border-left:1px solid #fff;
     border-radius:8px;
	 color:#B7F8B4;
     padding:0px 5px;
	 font-size:12px;
}
 
 
#recherche{
     float:left;
	 margin-top:20px;
	 padding-left:px;
}
 
 
#recherche input[type=text]{
     border: none;
     width:139px;
     height:30px;
     background:url(images/champ-recherche.png) top left no-repeat;
     padding:0px 10px 0px 10px;
     float:left;
	 box-sizing:border-box;
}