Problème d'affichage sous IE, URGENT (délais)

Résolu
BtK -  
Dalida Messages postés 6728 Date d'inscription   Statut Contributeur Dernière intervention   -
Bonjour,

Toutes les balises CSS du site que je dois rendre opérationnel pour demain soir ne sont pas reconnues par IE et je ne trouve pas de solution ...

Ainsi, la valeur "bottom" du CSS n'est pas prise en compte et l'Iframe n'a pas la bonne hauteur ...

De plus un espace (vertical) se glisse entre les images sous IE ...

Pourtant sous Firefox tout est nickel !

Voici le CSS:

<!--
.box {
position : absolute;
bottom : 24px;
left : 24px;
top : 240px;
}
.page {
position : absolute;
bottom : 24px;
right : 24px;
top : 240px;
}
-->

et le (X)HTML de l'en-tête pour les images (mappées):

<center>

<IMG
src="pix/headerlogo.png"
alt=""
border="0"
width="800"
margin="0"
padding="0"
usemap="#mons"
/>

<map
name="mons">

<area
shape="poly"
coords="70,87,186,81,187,105,71,110"
href="https://www.mons.be/"
target="_blank"
alt=""
/>

</map>

<IMG
src="pix/buttonsbar.png"
alt=""
border="0"
width="800"
usemap="#menu"
/>

<map
name="menu">

<area
shape="poly"
coords="0,0,150,0,125,25,0,25"
href="news.php"
target="page"
alt=""
/>

<area
shape="poly"
coords="150,0,250,0,225,25,125,25"
href="events.php"
target="page"
alt=""
/>

<area
shape="poly"
coords="250,0,350,0,325,25,225,25"
href="projets.php"
target="page"
alt=""
/>

<area
shape="poly"
coords="350,0,450,0,425,25,325,25"
href="pv.php"
target="page"
alt=""
/>

<area
shape="poly"
coords="450,0,550,0,525,25,425,25"
href="ccj.php"
target="page"
alt=""
/>

<area
shape="poly"
coords="550,0,650,0,625,25,525,25"
href="contact.php"
target="page"
alt=""
/>

<area
shape="poly"
coords="650,0,800,0,800,25,625,25"
href="#"
target="_self"
alt=""
/>

</map>

<IMG
src="pix/intermenu.png"
alt=""
border="0"
width="800"
/>

</center>

Enfin, voici la page posant problème:

http://www.ccjmons.be/index3.php

Il s'agit d'un site pour une institution communale officielle (Conseil Communal des Jeunes de Mons) et j'ai vraiment besoin d'aide ! D'avance, Merci beaucoup !
A voir également:

21 réponses

Dalida Messages postés 6728 Date d'inscription   Statut Contributeur Dernière intervention   922
 
bien vu Gihef !
pour choper le Layout tu peux essayer de donner des valeurs aux dimensions en CSS. je l'applique partout…
<DIV
    align="center"  style="margin:0; padding:0; text-align:center; width:100%;">

  <IMG
    src="pix/headerlogo.png"
    alt=""                                                                                              
    border="0"                                                                                          
    width="800"
    margin="0"
    padding="0"
    usemap="#mons"
    style="border-style:none; margin:0; padding:0; width:800px;"
    />
[...]
0