Merci pour l'aide que vous pourrez m'apporter.

J'ai un probleme d'affichage entre IE6 pourtant sur les autres navigateurs IE7 et FF2 cela fonctionne bien.
Sur ce site
-->http://www.touconfort.com, avec IE6, pour la recherche, le premier bouton OK ne s'affiche pas alors que le deuxieme oui, et sur FF2, tous les boutons s'affiche sans soucis.


Voici le code HTML :
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
 
		<form method = "GET" action ="search.php" id="recherche" class="fsearch">
		<ul id="search_sel">
			<!-- liste_marques -->
			<li>
				<select name = "PRTY" id="marque_search" class="select_mark"  />
<!--				<select name = "PRTY" id="marque_search" class="select_mark"  />-->
					<option value="toutes-marques">- MARQUE -</option>
					<option value ='aeg'>AEG</option><option value ='airlux'>AIRLUX</option><option value ='amana'>AMANA</option><option value ='ariston'>ARISTON</option><option value ='whirlpool'>WHIRLPOOL</option><option value ='wolf'>WOLF</option>
				</select>
			</li>
			<!-- /liste_marques -->
 
			<!-- liste_produits -->
			<li>
				<select name = "CARA" id="produit_search" class="select_pdt"/>
					<option value="tous-produits">- PRODUIT -</option>
					<option value="tous-produits"></option>
					<option value ='culinaire' class='nunivers'>- CULINAIRE - </option><option value='4611'>Appareil a fondue</option><option value='6412'>Autocuiseur</option><option value='37'>Balance</option><option value='4602'>Barbecue</option><option value='6409'>Sauteuse</option><option value='6415'>Sets</option><option value='6427'>Theiere</option><option value='6411'>Wok</option><option value =''></option>					
				</select>
			</li>
			<!-- /liste_produits-->
			<li>
				<input type="button" name="ok" onClick="this.form.submit();" value="Ok" class="sel_boot" />
			</li>
		</ul>
		</form>
		<!-- / formulaire rechercher marques/produits -->
 
 
		<!-- formulaire rechercher par référence -->
		<form method = "GET" action ="reference.php" id="recherche" class="fsearch">
		<ul id="search_ref">
		  	<li>
				<input name="PRTY" type="text" value="Par Reference..." class="ref_search" id="RECH"  onFocus="if (this.value == 'Par Reference...') { this.value='';}" onBlur="if (this.value == '') { this.value = 'Par Reference...';}" />
			</li>
			<li>
				<input type="button" name="go" onClick="this.form.submit();" value="Go !" class="ref_boot" />
			</li>
		</ul>
		</form>
voici 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
 
<style>
.sel_boot {
width:60px;
height:17px;
margin:0;
padding:0;
background-color:#FFA800;
border:1px solid #e8e8e8;
color:#FFFFFF;
font-weight:bold;
font-size:10px;
z-index:20;
}
ul#search_sel {
margin:0;
padding:0 15px 0 187px;
float:left;
}
/* for Internet Explorer 6 */
/*\*/
* html ul#search_sel {
padding:0 19px 0 187px;
}
 
ul#search_ref {
margin:-4px 0 0 0;
padding:0;
}
 
ul#search_ref li {
display:inline;
margin:0;
padding:0;
}
 
ul#search_sel li {
display:inline;
margin:0;
padding:0;
}
 
.fsearch {
margin:0;
padding:2px 0 3px 0;
}
 
.select_mark {
margin:0;
padding:0;
width:130px;
font-family:Verdana, sans;
font-size:10px;
font-weight:normal;
color:#666666;
text-align:left;
background-color:#FFFFFF;
}
.select_pdt {
margin:0;
padding:0;
width:165px;
font-family:Verdana, sans;
font-size:10px;
font-weight:normal;
color:#666666;
text-align:left;
background-color:#FFFFFF;
}
 
.ref_search {
margin:0;
padding:0;
width:137px;
font-family:Verdana, sans;
font-size:11px;
font-weight:normal;
color:#666666;
text-align:center;
background-color:#FFFFFF;
}
 
.ref_boot {
width:60px;
height:17px;
margin:0;
padding:0;
background-color:#FFA800;
border:1px solid #e8e8e8;
color:#FFFFFF;
font-weight:bold;
font-size:10px;
}
</style>
Si vous avez des questions n'hésistez pas!

Enjoy!