Bonjour

Je débute et j'ai un petit souci avec mon menu :

Je voudrais mettre une flêche sur la gauche quand on passe sur les options du sous-menu, mais la flêche se place sur le texte...

La flêche est le fichier "parent.gif"

Voici le lien : http://www.comeric.fr/menu/menu2.html

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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
@charset "utf-8";
/* CSS Document */
#menu_vert {
/* no margin/padding so it fills the whole div */
	margin: 0;
	padding: 0;
    outline: none;
}
.clearb {
/* needed for some browsers */
	clear: both;
}
#menuwrapper {
/* set the background color for the menu here */
	background-color: #fff;
/* IE6 Hack */
	height: 1%;
	width: auto;
	margin-top: 0px;
	padding: 0;
}
 
ul#primary-nav {
	list-style-type: none;
	margin: 0px;
	padding-top: 0px;
	padding-left: 80px;
}
 
#primary-nav ul {
        background-color: #a2daf3;
/* remove any default bullets */
	list-style-type: none;
/* sets width of second level ul to background image */
	width: 210px;
	margin: 0px;
	padding: 0px;
/* make the ul stay in place so when we hover it lets the drops go over the content instead of displacing it */
	position: absolute;
/* Pour que le sous-menu ne soit pas caché par le slideshow */
z-index: 10;
/* top being the bottom of the li it comes out of */
	top: auto;
/* keeps it hidden till hover event */
	display: none;
/* room at top for li so image top shows correct */
	padding-top: 9px;
}
/* IE6 hacks on the above code */
* html #primary-nav ul {
	padding-top: 13px;
}
#primary-nav ul ul {
/* pour que les sous sous-menu soient en dessous des sous-menus */
	position:static;
/* insures no top margins */
	margin-top: 0px;
/* pulls the last ul back over the preceding ul */
	margin-left: -1px;
/* negative margin pulls the left centered in li next to it */
	top: -3px;
}
/* IE6 hacks on the above code */
* html #primary-nav ul ul {
	margin-top: 0px;
	padding-left: 5px;
	top: -7px;
}
#primary-nav li {
/* a little space to the left of each top level menu item */
	/*margin-left: 5px;*/
margin-left: 0px;
/* floating left will set menu items to line up left to right else they will stack top to bottom */
	float: left;
}
#primary-nav li li {
/* a little more space to the left of each menu item */
	margin-left: 8px;
/* keeps them tight to the one above, no missed hovers */
	margin-top: -1px;
/* removes the left float set in first li so these will stack from top down */
	float: none;
/* relative to the ul they are in */
	position: relative;
}
/* IE6 hacks on the above code */
* html #primary-nav li li {
	margin-left: 6px;
/* helps hold it inside the ul */
	width: 171px;
}
ul#primary-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: 1em;
/* make sure we keep the font normal */
	font-weight: normal;
/* set default link colors */
	color: #666;
/* doing tab menus require a bit different padding, this will give room on right for image to show, adjust to width of your image */
	padding: 0px 11px 0px 0px;
/* makes it hold a shape */
	display: block;
/* remove default "a" underline */
	text-decoration: none;
}
ul#primary-nav li a span {
/* takes normal "a" padding minus some for right image */
	padding: 12px 4px 12px 15px;
/* makes it hold a shape */
	display: block;
}
ul#primary-nav li a:hover {
/* kind of obvious */
	background-color: transparent;
}
ul#primary-nav li span {
/* set text color here also to insure color */
	color: #666;
/* just to be sure */
	font-weight: bold;
}
ul#primary-nav li li {
/* remove any image set in first level li */
	background:  none;
}
ul#primary-nav li li span {
/* remove any image set in first level li span */
	background:  none;
/* set text color here also to insure color */
	color: #666;
/* just to be sure */
	font-weight: normal;
}
ul#primary-nav li:hover,
ul#primary-nav li.menuh,
ul#primary-nav li.menuparenth {
background-color: #ffff00;
}
ul#primary-nav li:hover span,
ul#primary-nav li.menuh span,
ul#primary-nav li.menuparenth span {
background-color: #ffff00;
/* change text color on hover */
	color: #666;
	font-weight: bold;
}
/* IE6 hacks, the JS used for hover effect in IE6 puts class menuh on li, unless they have a class then just an "h" as seen above and below */
ul#primary-nav li li.menuh {
	background:  none;
	font-weight: normal;
}
/* IE6 hacks */
ul#primary-nav li.menuparenth li span {
	background:  none;
	color: #666;
	font-weight: normal;
}
/* IE6 hacks */
ul#primary-nav li.menuparenth li.menuparent span {
/* gif for IE6, as it can't handle transparent png */
/*	background:  url(uploads/ngrey/parent.gif) no-repeat right center;*/
	color: #666
}
/* IE6 hacks */
ul#primary-nav li.menuparenth li.menuh span {
	background:  none;
	color: #666;
	font-weight: normal;
}
/* IE6 hacks */
ul#primary-nav li.menuparenth li.menuparenth {
	background:  none;
	color: #666;
	font-weight: normal;
}
ul#primary-nav li.menuactive a {
background-color: #ffff00;
}
ul#primary-nav li a.menuactive span {
background-color: #ffff00;
/* non active is #FFF/white, we need #000/black to contrast with light background */
	color: #666;
/* bold to set it off from non active */
/*	font-weight: bold;*/
}
#primary-nav li li a {
/* second level padding, no image and not as big */
/*	padding: 5px 10px;*/
    padding: 0px;
 
/* to keep it within li */
	width: 165px;
/* space between them */
	margin: 5px;
	background: none;
}
/* IE6 hacks to above code */
* html #primary-nav li li a {
/*	padding: 5px 10px;*/
	padding: 0px;
	width: 165px;
	margin: 0px;
	color: #666;
}
#primary-nav li li:hover {
/* remove image set in first level */
	background: none;
}
#primary-nav li li a:hover {
/* we need #666 to contrast with dark background */
	color: #666;
}
#primary-nav li.menuparent li a:hover span {
/* insures text color */
	color: #000;
	background:  url(uploads/ngrey/parent.gif) no-repeat left center;
}
 
ul#primary-nav li:hover li a span {
/* first level is #FFF/white, we need #666 to contrast with light background */
	color: #666;
/* just to insure normal */
	font-weight: normal;
}
#primary-nav li li.menuactive a.menuactive, #primary-nav li li.menuactive a.menuactive:hover {
/* set your image here, lighter than hover */
/* non active is #FFF/white, we need #666 to contrast with light background */
	color: #666;
}
#primary-nav li li.menuactive a.menuactive span {
/* insures text color */
	color: #666;
}
 
#primary-nav li li.menuactive a.menuactive:hover span {
/* insures text color */
	color: #000;
}
 
/* IE6 hacks to above code */
#primary-nav li li.menuparenth a.menuparent span {
/* right arrow for menu parent, IE6 gif */
/*	background:  url(uploads/ngrey/parent.gif) no-repeat right center;*/
	color: #666;
}
/* IE6 hacks to above code */
#primary-nav li li.menuparenth a.menuparent:hover span {
	color: #666;
}
#primary-nav li li.menuparent a.menuparent span {
/* Pour supprimer l'espace du 1er sous sous-menu */
	float: left;
/* Pour laisser de la place à la flêche */
/*	padding-left: 12px;*/
	font-weight: bold;
/* right arrow for parent item */
/*	background:  url(uploads/ngrey/parent.gif) no-repeat right center;*/
}
#primary-nav li.menuactive li a:hover span {
/* black text */
	color: #000;
}
ul#primary-nav li li a.menuactive  span {
/* remove image set in first level */
	background:  none;
	font-weight: normal;
}
#primary-nav li.menuactive li a {
/* second level active link color */
	color: #666;
	text-decoration: none;
	background: none;
}
#primary-nav li.menuactive li a:hover span {
/* black text */
	color: #000;
}
ul#primary-nav li:hover li a span, ul#primary-nav li.menuparenth li a span {
	padding: 0px;
	background:  none;
}
/* for fourth level add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
*/
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
	display: block;
}
/* IE Hacks */
#primary-nav li li {
	float: left;
	clear: both;
}
#primary-nav li li a {
	height: 1%;
}
Comment faire pour décaler le texte sur la droite ?

J'ai aussi un étrange bug d'affichage bleu sur la droite....

Merci de votre aide