Bonsoir,
voila je voudrais savoir comment centré le bannière dans le header?
et pourquoi les textes dans le corps ainsi que la photo ne sont pas centré alors que j'ai entouré le tout de h1 ou il est dis text align center???
http://pressagny.canin.free.fr
merci de votre aide
milène
Modifié par milene76 (10 Jun 2007 - 22:58)
voila je voudrais savoir comment centré le bannière dans le header?
et pourquoi les textes dans le corps ainsi que la photo ne sont pas centré alors que j'ai entouré le tout de h1 ou il est dis text align center???
http://pressagny.canin.free.fr
[code]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Largeur fluide, header/menu gauche/contenu/footer.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
/* CSS issu des tutoriels css.alsacreations.com */
body {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 0.8em;
margin: 0;
padding: 0;
}
#header {
height: 99px;
background-color: silver;
}
#conteneur {
position: absolute;
width: 100%;
background-color:silver;
}
#centre {
background-color:silver;
margin-left: 150px;
}
#gauche {
float:left;
left:0;
width: 150px;
}
#pied {
height: 30px;
background-color: silver;
clear:both;
}
.menugauche {
list-style-type: none;
margin: 0;
padding:0;
}
.menugauche li {
margin-bottom: 5px;
}
.menugauche a {
margin: 0 2px;
color: #000000;
text-decoration: underline;
}
.menugauche a:hover {
text-decoration: none;
}
p {margin: 0 0 10px 0;}
#corps h1 /* Tous les titres h1 du corps */
{
color: black;
text-align: center;
font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
}
#corps h2 /* Tous les titres h2 du corps */
{
height: 30px;
padding-left: 30px;
color: black;
text-align: left;
}
#corps h4
{
color: black;
text-align: center;
}
#corps h5
{
color: black;
text-align: center;
}
table
{
margin: auto;
border: 4px outset black;
}
td
{
text-align: center;
padding: 5px;
font-family:Arial, "Arial Black", "Times New Roman", Times, serif;
border: 2px outset black;
}
th
{
text-align: center;
font-family:Arial, "Arial Black", "Times New Roman", Times, serif;
font-size: 18px;
color: black;
font-weight: bold;
text-decoration: underline;
}
</style>
</head>
<body>
<div id="conteneur">
<div id="header"><img alt="bannière du club" src="logo/banniere.gif"/>
</div>
<div id="gauche">
<h3>Le Club</h3>
<ul class="menugauche">
<li><a href="page_modele.html">Historique</a></li>
<li><a href="page_modele.html">Le bureau</a></li>
<li><a href="page_modele.html">Les horaires</a></li>
<li><a href="page_modele.html">Plan d'accès</a></li>
</ul>
<br />
<div id="gauche">
<h3>Agility</h3>
<ul class="menugauche">
<li><a href="reglement_agi_2007.html">Le réglement</a></li>
<li><a href="page_modele.html">Manifestations du club</a></li>
<li><a href="page_modele.html">Résultats du club</a></li>
<li><a href="equipe_agility.html">Les agilitistes</a></li>
</ul>
<br />
<div id="gauche">
<h3>Ring</h3>
<ul class="menugauche">
<li><a href="reglement_agi_2007.html">Le réglement</a></li>
<li><a href="page_modele.html">Manifestations du club</a></li>
<li><a href="page_modele.html">Résultats du club</a></li>
<li><a href="page_modele.html">Les ringeurs</a></li>
</ul>
</div>
</div>
</div>
<div id="centre">
<h1>L'Amicale Canine de Pressagny</h1>
<h1><img alt="club dieppe" src="photo/Groupe_a_dieppe.jpg" width="500" height="200"/></h1>
<h1>NEWS</h1>
<table>
<tr>
<th colspan="2">Le 19 Mars 2007</th>
</tr>
<tr>
<td>Création des pages réglements<br />
Mise en ligne du réglement agility 2007<br />
</td>
</tr>
<tr>
<th colspan="2">Le 18 Mars 2007</th>
</tr>
<tr>
<td>Un grand merci à TAILEE pour la bannière<br/>
Création des pages des équipes d'agilitistes toutes catégories.<br />
Vous trouverez le nom du conducteur, le nom du chien, sa race ainsi que la photo de l'équipe!<br />
</td>
</tr>
</table>
<p><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
</p>
</div>
<div id="pied">pied de page</div>
</div>
</body>
</html>
merci de votre aide
milène
Modifié par milene76 (10 Jun 2007 - 22:58)