Bonjour tout le monde. Voilà je débute à peine le css et me voilà déjà avec pas mal de soucis au niveau de la mise en page sous IE.
--> Sous IE, j'ai un espace blanc rajouté en bas de page et je ne vois pas d'où ca vient...
-->Toujours sous IE, le roll over des images du menu ne fonctionne pas correctement (j'ai essayé une encapsulation sur la première image du menu, l'image du roll over s'affiche bien, mais elle reste toujours affiché...).
--> Sous Mozilla tout fonctionne, à part un petit temps de chargement pour les images du roll over.
Si vous aviez des pistes svp pour mon pb sous IE. Merci. Ah oui mon début de site : http://www.atlantiqueinformatique.com/guitare_occas/
Je vous poste mon code, bon c'est la première fois que je fais du css...
Modifié par Oropher (13 Oct 2006 - 10:43)
--> Sous IE, j'ai un espace blanc rajouté en bas de page et je ne vois pas d'où ca vient...
-->Toujours sous IE, le roll over des images du menu ne fonctionne pas correctement (j'ai essayé une encapsulation sur la première image du menu, l'image du roll over s'affiche bien, mais elle reste toujours affiché...).
--> Sous Mozilla tout fonctionne, à part un petit temps de chargement pour les images du roll over.
Si vous aviez des pistes svp pour mon pb sous IE. Merci. Ah oui mon début de site : http://www.atlantiqueinformatique.com/guitare_occas/
Je vous poste mon code, bon c'est la première fois que je fais du css...
body
{
width: 780px;
margin: auto;
margin-top: 0px;
margin-bottom: 0px;
}
/* L'en-tête */
#en_tete
{
width: 780px;
height: 141px;
background-image: url("images/Maquette_finale_01.jpg");
background-repeat: no-repeat;
}
#dessus_menu
{
overflow: hidden;
margin-left: 0px;
margin-bottom: 0px;
width: 780px;
height: 9px;
background-image: url("images/Maquette_finale_02.jpg");
background-repeat: no-repeat;
}
/* Le menu */
a #menu_accueil
{
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 109px;
height: 78px;
background-image: url("images/Maquette_finale_03.jpg");
background-repeat: no-repeat;
}
a:hover #menu_accueil
{
background-image: url("images/Maquette_finale_03_ro.jpg");
}
#menu_occasions
{
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 106px;
height: 78px;
background-image: url("images/Maquette_finale_04.jpg");
background-repeat: no-repeat;
}
#menu_occasions:hover
{
background-image: url("images/Maquette_finale_04_ro.jpg");
}
#menu_annonces
{
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 113px;
height: 78px;
background-image: url("images/Maquette_finale_05.jpg");
background-repeat: no-repeat;
}
#menu_annonces:hover
{
background-image: url("images/Maquette_finale_05_ro.jpg");
}
#menu_contact
{
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 101px;
height: 78px;
background-image: url("images/Maquette_finale_06.jpg");
background-repeat: no-repeat;
}
#menu_contact:hover
{
background-image: url("images/Maquette_finale_06_ro.jpg");
}
#menu_débuter
{
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 100px;
height: 78px;
background-image: url("images/Maquette_finale_07.jpg");
background-repeat: no-repeat;
}
#menu_débuter:hover
{
background-image: url("images/Maquette_finale_07_ro.jpg");
}
#recherche
{
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 251px;
height: 78px;
background-image: url("images/Maquette_finale_08.jpg");
background-repeat: no-repeat;
}
#dessus_corps
{
overflow: hidden;
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 780px;
height: 8px;
background-image: url("images/Maquette_finale_09.jpg");
background-repeat: no-repeat;
}
/* Le corps de la page */
#corps
{
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 780px;
height: 536px;
background-image: url("images/Maquette_finale_10.jpg");
background-repeat: no-repeat;
}
#dessus_pied_de_page
{
overflow: hidden;
float: left;
margin-left: 0px;
margin-bottom: 0px;
width: 780px;
height: 8px;
background-image: url("images/Maquette_finale_11.jpg");
background-repeat: no-repeat;
}
/* Le pied de page*/
#pied_de_page
{
float: left;
text-align: center;
width: 780px;
height: 120px;
background-image: url("images/Maquette_finale_12.jpg");
background-repeat: no-repeat;
}
Modifié par Oropher (13 Oct 2006 - 10:43)