salut, j'ai téléphoné au service clientèle de mon provider. Leurs serveurs sont correctement bien réglés pour le php. Le technicien m'apprend que cela vient de mes frames: "index.php" ne télécharge qu'un seul frame, donc une seule page et non tous les frames. J'utilise en fait les pseudo-frames avec du css. Voici mon code:
/* CSS Document */
.font {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: normal;
font-style: normal;
font-variant: normal;
}
.gras {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font:
font-weight: normal;
font-style: normal;
font-weight: bold;
}
body {
position: absolute;
margin: 0em;
margin-left: 0em;
padding: 0em;
width: 100%;
height: 100%;
}
div#haut {
margin-bottom:auto;
margin-top:auto;
width: auto;
height: 0.50em;
}
div#conteneur {
height: 100%;
width: 100%;
float:left;
}
#menu {
position: absolute;
width: 126px;
height: 550px;
margin: 0px;
padding: opx;
left: -15px;
/*padding-left:inherit;*/
margin-top: 170px;
top: 3px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000066;
background-color:#FFFFFF;
}
/*#menu ul li{
border-top: 1px dashed #000;
padding-bottom: 5px;
width: 90px
} */
a:link {
color: #000066;
}
a:visited {
color:#000000;
}
a:hover {
color: #867653;
}
a:active {
color:#000000;
}
#frame {
position:relative;
margin-top: 140px;
margin-left: 120px; /* on place ce bloc à droite du bloc menu de 180px de large */
margin-bottom: 0px;
padding: 10px;
padding-top: 5px;
height: 70%;
width: 902px;
overflow: auto; /*cette propriété va permettre le scroll de ce bloc */
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
border-left:dotted thin;
}
#bas {
position:relative;
margin:0px;
margin-top: auto;
width: 860px;
height: 50px;
top: 0px;
}
</style>
NB: certains attributs sont volontairement désactivés, en commentaire.


