Bonjour,
J'essayes de refaire mon nouveau site entièrement en CSS (celui en table > http://www.dbh-oblivion.com )
Par contre, en css, sous IE, il y a une marge, et j'arrive à la supprimer en mettant margin-top à -2px, mais forcement, comme c'est un design qui se suit, ça fait moche.
Voici un screen :
http://www.zimagez.com/avatar/marge.jpg
et le code html/css
Merci d'avance
Modifié par fox17 (04 Aug 2006 - 16:59)
J'essayes de refaire mon nouveau site entièrement en CSS (celui en table > http://www.dbh-oblivion.com )
Par contre, en css, sous IE, il y a une marge, et j'arrive à la supprimer en mettant margin-top à -2px, mais forcement, comme c'est un design qui se suit, ça fait moche.
Voici un screen :
http://www.zimagez.com/avatar/marge.jpg
et le code html/css
<div id="navigation">
<img src="design/titre_oblivion.gif" class="logo1" title="oblivion : Database of heroes" alt="oblivion : Database of heroes" width="317" height="85" />
<img src="design/databaseh.gif" class="logo2" title="oblivion : Database of heroes" alt="oblivion : Database of heroes" width="186" height="29" />
<div id="banniere_site">
<img src="design/haut.jpg" title="banniere oblivion : Database of heroes" alt="banniere oblivion : Database of heroes" width="762" height="95" />
</div>
<div id="menu_site">
<div class="menu_boutons">
<?php require 'menu.php'; ?>
</div>
</div>
</div>
/**********Général***********/
body{
background-color: #FFFFFF;
background-image: url(design/fond.gif);
background-repeat: repeat-x;
color:#000000;
margin-top: 40px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
text-align:center;
}
img{
border: 0px;
}
#navigation{
width: 762px;
margin: auto;
border: 0px;
}
.logo1{
float: left; /* alignement du logo à gauche */
margin-top: 4px;
margin-left: 1px;
border: 0px;
}
.logo2{
float: right; /* alignement du logo à droite */
margin-right: 10px;
margin-top: 60px;
border: 0px;
}
#banniere_site{
width: 762px;
margin-bottom: 0;
}
#menu_site{
color: #FFFFFF;
background-image: url(design/haut_menu.jpg);
background-repeat: no-repeat;
width: 762px;
height: 50px;
margin-top: 0px;
}
.menu_boutons{
margin: 0px;
height: 45px;
}
Merci d'avance
Modifié par fox17 (04 Aug 2006 - 16:59)