Bonjour,
J'ai un problème, je voudrais centré les élements d'une page (en-tête et menu) et cela ne fonctionne page
Le code html :
Le code CSS:
Vous pouvez voir ce à quoi cela ressemble maintenant ici : http://www.kataclyst.com/V2/Test/
Ce à quoi je voudrais que cela ressemble (cette page est faites sans tenir compte des normes XHTML/CSS, c'est pour cela que je veux la refaire comme il faut en CSS) :
http://www.kataclyst.com/V2/FR/
Merci!
Modifié par Kiboumz (08 Mar 2006 - 19:31)
J'ai un problème, je voudrais centré les élements d'une page (en-tête et menu) et cela ne fonctionne page
Le code html :
<body>
<div id="page">
<div id="entete"></div>
<div id="menu">
<ul>
<li id="kataclyst"></li>
<li id="accueil"><a href="#a"></a></li>
<li id="apropos"><a href="#b"></a></li>
<li id="services"><a href="#c"></a></li>
<li id="portfolio"><a href="#d"></a></li>
<li id="demande"><a href="#e"></a></li>
<li id="contact"><a href="#f"></a></li>
</ul>
</div>
</div>
</body>
Le code CSS:
#page
{
text-align:center;
margin:0 auto;
padding:10px;
background-color:white;
width:800px;
font-size:1px;
}
#menu
{
margin:0 auto;
text-align:center;
}
#menu ul li
{
list-style-type:none;
display:block;
float:left;
}
#menu a
{
width:90px;
height:30px;
display:block;
}
#menu ul li#kataclyst
{
background:url(menu/kataclyst.jpg) no-repeat;
width:150px;
height:39px;
}
#menu ul li#accueil
{
background:url(menu/accueil.jpg) no-repeat;
width:90px;
height:39px;
}
#menu ul li#apropos
{
background:url(menu/apropos.jpg) no-repeat;
width:90px;
height:39px;
}
#menu ul li#services
{
background:url(menu/services.jpg) no-repeat;
width:90px;
height:39px;
}
#menu ul li#portfolio
{
background:url(menu/portfolio.jpg) no-repeat;
width:90px;
height:39px;
}
#menu ul li#demande
{
background:url(menu/demande.jpg) no-repeat;
width:90px;
height:39px;
}
#menu ul li#contact
{
background:url(menu/contact.jpg) no-repeat;
width:90px;
height:39px;
}
#entete
{
background:url(entete.jpg) no-repeat;
width:691px;
height:167px;
margin:0 auto;
text-align:center;
}
Vous pouvez voir ce à quoi cela ressemble maintenant ici : http://www.kataclyst.com/V2/Test/
Ce à quoi je voudrais que cela ressemble (cette page est faites sans tenir compte des normes XHTML/CSS, c'est pour cela que je veux la refaire comme il faut en CSS) :
http://www.kataclyst.com/V2/FR/
Merci!
Modifié par Kiboumz (08 Mar 2006 - 19:31)