Bonsoir,

Sur ma page: http://www.princessedunjour.com/collections-bijoux-mariage.htm

J'ai utiliser le letter-sapcing: 0.2em pour le menu du haut et le menu de gauche.

Là ou je ne comprends pas, c'est pour le menu de gauche sous ie:
1. j'ai l'impression que le letter-spacing est 2x trop grand
2. j'ai comme le pressentiment que la taille du bloc menugauche est trop grand versus ff

*** Par ailleurs, les liens du menu de gauche sont plus espacés sur ie que sur ff, à peu près le double ***

Si qq un a une idée ??

Voici mes codes


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
 
<body>
 
<div id="page">
 
        <h1 id="titre">
 
        <a href="http://www.princessedunjour.com">
 
        <img src="logo222.gif" title="Princesse d'un Jour" alt="Princesse d'un Jour" style="vertical-align: middle; margin-right: 50px;" /></a>
 
        BIJOUX ET ACCESSOIRES POUR LE MARIAGE
 
        </h1>
 
 
 
		<ul id="menu_haut">
 
        <li><a id="menu1" title="Accueil" href="accessoires-colliers-mariage.htm">ACCUEIL</a></li>
 
		<li><a id="menu2" title="Collections" href="accessoires-mariage-bracelets.htm">COLLECTIONS</a></li>
 
		<li><a id="menu3" title="Design" href="accessoires-boucles-doreilles.htm">DESIGN</a></li>
 
		<li><a id="menu4" title="Points de vente" href="accessoires-mariage-pics-a-cheveux">POINTS DE VENTE</a></li>
 
		<li><a id="menu5" title="A propos" href="accessoires-mariage-tiares.htm">A PROPOS</a></li>
 
		<li><a id="menu6" title="Contact" href="#">CONTACT</a></li>
 
		</ul> 
 
  <div id="blocmenugauche">	
 
	<ul id="menu_gauche">
 
	<li><a id="menug1" title="Toute la collection" href="#">TOUTE LA COLLECTION</a></li>
 
	<li><a id="menug2" title="Perles de rocaille" href="#">PERLES DE ROCAILLE</a></li>
 
	<li><a id="menug4" title="Cristal Swarovki" href="#">CRISTAL SWAROVSKI</a></li>
 
	<li><a id="menug5" title="Perles de Bohème" href="#">PERLES DE BOHEME</a></li>
 
	<li><a id="menug6" title="Fleurs de soie" href="#">FLEURS DE SOIE</a></li>
 
	<li><a id="menug7" title="Perles nacrées" href="#">PERLES NACREES</a></li>
 
	<li><a id="menug8" title="Guipure brodée" href="#">GUIPURE BRODEE</a></li>
 
	</ul>
 
	<div>
 
	<p id="couleurs">Découvrez aussi nos bijoux en couleurs</p>
 
	</div>
 
	</div>
 
	<div id="photo_eve">
 
	<a href="http://www.princessedunjour.com"> <img src="/Evetest.jpg" title="Perles de rocaille" alt="Perles de rocaille"/></a>
 
	<p id="perles_de_rocaille">Perles de rocaille</p>
 
    </div>
 
	<div id="photo_cristal">
 
	<a href="http://www.princessedunjour.com"> <img src="/Cristaltest.jpg" title="Cristal Swarovski" alt="Cristal Swarovski"/></a>
 
	<p id="cristal_swarovski">Cristal Swarovski</p>
 
    </div>
 
	<div id="photo_cleopatre">
 
	<a href="http://www.princessedunjour.com"> <img src="/cleopatre-blanc-test.jpg" title="Perles de Bohème" alt="Perles de Bohème"/></a>
 
	<p id="perles_boheme">Perles de Bohème</p>
 
    </div>
 
	<div id="photo_camelia_tissu">
 
	<a href="http://www.princessedunjour.com"> <img src="/camelia-tissu-test.jpg" title="Fleurs de soie" alt="Fleurs de soie"/></a>
 
	<p id="fleurs_de_soie">Fleurs de soie</p>
 
    </div>
 
	<div id="photo_estella">
 
	<a href="http://www.princessedunjour.com"> <img src="/estella-test.jpg" title="Perles nacrées" alt="Perles nacrées"/></a>
 
	<p id="perles_nacrees">Perles nacrées</p>
 
    </div>
 
	<div id="photo_guipure">
 
	<a href="http://www.princessedunjour.com"> <img src="/Guipure-blanc-test.jpg" title="Guipure brodée" alt="Guipure brodée"/></a>
 
	<p id="guipure_brodee">Guipure brodée</p>
 
    </div>
 
</div>	                           
 
</body>


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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
 
body {
 
margin: 0;
 
text-align: center;
 
background: url(/Baggrund_flosset.gif) repeat-y center top;
 
}
 
img {
 
border-width: 0;
 
border-style: none;
 
}
 
#page {
 
margin-left: auto;
 
margin-right: auto;
 
width: 800px;
 
text-align: left;
 
}
 
h1 { 
 
font-family: Arial, Times, serif;
 
letter-spacing: 0.3em;
 
font-size: 65%;
 
color: #990099;
 
margin: 0 0 0 0;
 
}
 
h2 { 
 
font-family: Tahoma, Times, serif;
 
font-size: 0.7em;
 
letter-spacing: 0.05em;
 
color: #990099;
 
margin-top: 20px;
 
margin-left: 40px;
 
margin-bottom: 0px;
 
margin-right: 0px;
 
padding: 0px;
 
width: 700px;
 
}
 
ul#menu_haut {
 
padding: 0px;
 
letter-spacing: 0.2em;
 
list-style-type: none;
 
font-family: Arial, Times, serif;
 
font-size: 60%;
 
margin-top: 20px;
 
margin-left: 115px;
 
margin-bottom: 0px;
 
margin-right: 0px;
 
text-align: left;
 
width: 700px;
 
}
 
#menu_haut li {
 
float: left;
 
}
 
#menu_haut a {
 
display: block;
 
color: #999999;
 
text-decoration: none;
 
text-align: center;
 
}
 
#menu1 {
 
border-right: 1px solid #999999;
 
width: 85px;
 
}
 
a#menu1:hover {
 
background: url(menu1.gif) no-repeat 0 0;
 
}
 
#menu2 {
 
border-right: 1px solid #999999;
 
width: 125px;
 
background: url(menu2.gif) no-repeat 0 0;
 
}
 
a#menu2:hover {
 
background: url(menu2.gif) no-repeat 0 0;
 
}
 
#menu3 {
 
border-right: 1px solid #999999;
 
width: 85px;
 
}
 
a#menu3:hover {
 
background: url(menu1.gif) no-repeat 0 0;
 
}
 
#menu4 {
 
border-right: 1px solid #999999;
 
width: 150px;
 
}
 
a#menu4:hover {
 
background: url(menu4.gif) no-repeat 0 0;
 
}
 
#menu5 {
 
border-right: 1px solid #999999;
 
width: 95px;
 
}
 
a#menu5:hover {
 
background: url(menu5.gif) no-repeat 0 0;
 
}
 
#menu6 {
 
width: 85px;
 
}
 
a#menu6:hover {
 
background: url(menu1.gif) no-repeat 0 0;
 
}
 
#menu_haut a:hover {
 
color: #000000;
 
}
 
div#blocmenugauche {
 
float: left;
 
width: 160px;
 
padding: 0;
 
margin: 0;
 
}
 
ul#menu_gauche {
 
margin-top: 40px;
 
margin-left: 0px;
 
margin-right: 0px;
 
margin-bottom: 0px;
 
letter-spacing: 0.2em;
 
list-style-type: none;
 
font-family: Arial, Times, serif;
 
font-size: 60%;
 
text-align: left;
 
padding: 0;
 
}
 
#menu_gauche a {
 
display: block;
 
color: #999999;
 
text-decoration: none;
 
text-align: left;
 
padding: 0;
 
margin: 0;
 
}
 
#menug1 {
 
line-height: 30px;
 
}
 
#menug2 {
 
line-height: 30px;
 
}
 
#menug3 {
 
line-height: 30px;
 
}
 
#menug4 {
 
line-height: 30px;
 
}
 
#menug5 {
 
line-height: 30px;
 
}
 
#menug6 {
 
line-height: 30px;
 
}
 
#menug7 {
 
line-height: 30px;
 
}
 
#menug8 {
 
line-height: 30px;
 
}
 
#menu_gauche a:hover {
 
color: #000000;
 
}
 
p#couleurs {
 
color: #999999;
 
}
 
div#photo_eve {
 
padding: 0;
 
float: left;
 
width: 150px;
 
height: 180px;
 
margin-left: 30px;
 
margin-top: 40px;
 
}
 
p#perles_de_rocaille {
 
font-family: Arial, Times, serif;
 
color: #999999;
 
font-size: 75%;
 
text-align: left;
 
margin-top: 5px;
 
margin-bottom: 0;
 
padding: 0px;
 
}
 
div#photo_cristal {
 
padding: 0;
 
float: left;
 
width: 150px;
 
height: 180px;
 
margin-left: 40px;
 
margin-top: 40px;
 
}
 
p#cristal_swarovski {
 
font-family: Arial, Times, serif;
 
color: #999999;
 
font-size: 75%;
 
text-align: left;
 
margin-top: 5px;
 
margin-bottom: 0;
 
padding: 0px;
 
}
 
div#photo_cleopatre {
 
padding: 0;
 
float: left;
 
width: 150px;
 
height: 180px;
 
margin-left: 40px;
 
margin-top: 40px;
 
}
 
p#perles_boheme {
 
font-family: Arial, Times, serif;
 
color: #999999;
 
font-size: 75%;
 
text-align: left;
 
margin-top: 5px;
 
margin-bottom: 0;
 
padding: 0px;
 
}
 
div#photo_camelia_tissu {
 
float: left;
 
margin-left: 30px;
 
padding: 0;
 
width: 150px;
 
height: 180px;
 
}
 
p#fleurs_de_soie {
 
font-family: Arial, Times, serif;
 
color: #999999;
 
font-size: 75%;
 
text-align: left;
 
margin-top: 5px;
 
margin-bottom: 0;
 
padding: 0px;
 
}
 
div#photo_estella {
 
float: left;
 
margin-left: 40px;
 
padding: 0;
 
width: 150px;
 
height: 180px;
 
}
 
p#perles_nacrees {
 
font-family: Arial, Times, serif;
 
color: #999999;
 
font-size: 75%;
 
text-align: left;
 
margin-top: 5px;
 
margin-bottom: 0;
 
padding: 0px;
 
}
 
div#photo_guipure {
 
float: left;
 
margin-left: 40px;
 
padding: 0;
 
width: 150px;
 
height: 180px;
 
}
 
p#guipure_brodee {
 
font-family: Arial, Times, serif;
 
color: #999999;
 
font-size: 75%;
 
text-align: left;
 
margin-top: 5px;
 
margin-bottom: 0;
 
padding: 0px;
 
}
PS: J'ai consience que ma css est bcp trop compliquée, mais comme je débute je préfère l'avoir en "développé" cligne