bon voila je sais pas si je suis retombé bien bas en oubliant un truc ou quoi mais voila, j'ai un menu constitué de simple <a href "...">.... qui fonctionne sous firefox mais pas sous ie ... je demande rien de bien compliqué pourtant lol voila mon code :

voici comment japelle mon menu dans mes pages :
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
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
   <head>
       <title>PC Service Plus</title>
       <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
	   <link rel="stylesheet" media="screen" type="text/css" title="Exemple" href="style.css" /> 
	   <meta http-equiv="refresh" content="5; URL=ajout_client.php">
    </head>
    <body>
    <!-- L'en-tête -->
    <div id="en_tete">
    </div>
			<?php
	include("menu2.php");
	?>
	<!-- Le corps -->
 <div id="corps">
voici menu2.php :

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
<div class="menu">
<div class="headmenu">
</div>
<div class="inmenu">
<a href="ajout_produit.php">Ajout d'un produit</a><br/>
<a href="recherche_produit.php">Recherche d'un produit</a><br/>
<a href="ajout_client.php">Ajouter un client</a><br/>
<a href="achat_client.php">Achat d'un client</a><br/>
<a href="recherche_client.php">Recherche d'un client</a><br/>
<a href="liste_client.php?choix=nom">Liste des client</a><br/>
<a href="liste_produit.php?choix=type">Liste des produit</a><br/>
<a href="garantie.php?client=">Garantie d'un client</a><br/>
<a href="reparation.php">Fiche réparations</a><br/>
<a href="recherche_reparation.php">Recherche réparation</a><br/>
<a href="liste_réparations.php?choix=id">Liste réparations</a><br/>
<br/><br/>
</div>
<div class="footmenu">
</div>
</div>
et le style :
Code css : 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
 
/* Le menu */
 
.menu
{
   float : left;
   width: 120px;
   text-align:left;
   /*border : 2px solid black;*/
   margin-bottom:10px;
}
 
.headmenu
{
   background-image: url("images/upMenu1.JPG");
   /*border : 2px solid black;*/
   height : 40px;
   width: 124px;
   text-align : center;
   padding-top : 20px; 
   font-family : "comic sans ms",arial;
}
 
.inmenu
{
   /*border : 2px solid black;*/
   width: 130px;
}
 
.inmenu a
{
font-size : 10px;
padding-left: 10px;
text-decoration : none;
color : #47ACFF;
}
 
.inmenu a:hover
{
font-size : 10px;
padding-left: 20px;
color : black;
}