Bonsoir,
Mon pied de page me pose quelques soucis.
Sous Firefox, aucun problème à constater (comme d'habitude)
Sous IE, mon pied de page est effectivement collé en bas quand le contenu total de la page dépasse (quand il faut utiliser la barre de scroll).
Dans le cas contraire, le footer s'affiche à la suite, et n'est donc pas collé en bas de la page.
J'ai testé les solutions données dans la FAQ d'Alsa et sur le site Pompage, mais sans grand résultat
Voici mon fichier php et css (voir a #footer) :
Le lien pour visualiser ceci est dans ma signature.
Merci d'avance.
Modifié par Bellami (12 Nov 2006 - 19:37)
Mon pied de page me pose quelques soucis.
Sous Firefox, aucun problème à constater (comme d'habitude)
Sous IE, mon pied de page est effectivement collé en bas quand le contenu total de la page dépasse (quand il faut utiliser la barre de scroll).
Dans le cas contraire, le footer s'affiche à la suite, et n'est donc pas collé en bas de la page.
J'ai testé les solutions données dans la FAQ d'Alsa et sur le site Pompage, mais sans grand résultat
Voici mon fichier php et css (voir a #footer) :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Discographie - All For Music</title>
<meta http-equiv="Content-Type" content="text/html" charset="iso-8859-1"/>
<link title="style" type="text/css" rel="stylesheet" href="style.css"/>
<link rel="shortcut icon" href="favicon.ico"/>
</head>
<body>
<div id="menu">
<?php
include("menu/liste.htm");
?>
</div>
<div id="scroll">
<div id="lettre">Discographie</div>
<div id="lettre">
<?php
include 'menu/artiste/listelettre1.php';
?>
</div>
<div>
<?php
include 'lienartiste1.php';
?>
</div>
</div>
<div id="footer">
<?php
include("menu/footer.php");
?>
</div>
</body>
</html>
body {
background-color : #ee982d;
background-repeat : repeat-x;
background-image: url(look/fade.png);
margin-top : 0;
margin-left : 0;
margin-right : 0;
margin-bottom : 0;
}
a:link {
font-family : Verdana;
font-size : 10pt;
color : #FFFFFF;
text-decoration : none;
}
a:active {
font-family : Verdana;
font-size : 10pt;
color : #FFFFFF;
text-decoration : none;
}
a:visited {
font-family : Verdana;
font-size : 10pt;
color : #FFFFFF;
text-decoration : none;
}
a:hover {
font-family : Verdana;
font-size : 10pt;
color : #3e57d7;
text-decoration : none;
}
#menu {
width : 100%;
height : 20%;
overflow : auto;
}
#scroll {
font-family : Verdana;
font-size : 10pt;
color : #FFFFFF;
text-align : center;
width : 100%;
padding-bottom : 15px;
}
#footer {
position : fixed;
bottom : 0px;
width : 100%;
text-align : center;
background-color : #F5DD47;
}
#footer a:link, #footer a:visited, #footer a:active {
font-family : Verdana;
font-size : 10pt;
color : #1833BD;
text-decoration : none;
}
#footer a:hover {
text-decoration : underline overline;
}
#liste {
text-align : center;
}
#liste li {
display : inline;
}
#liste ul {
margin-left : 0;
padding-left : 0;
margin-top : 0;
padding-top : 0;
}
#liste a:link, #liste a:visited {
background : #F5DD47;
padding : 10px 10px 10px 10px;
text-decoration : none;
color : #1833BD;
font : bold 0.8em Arial, Helvetica, sans-serif;
}
#liste a:hover {
color : #fff;
background : #d0630a;
}
#variables {
color : #3e57d7;
font-weight : bold;
}
#soustitre {
color : #ffffff;
font-weight : bold;
font-family : Verdana;
font-size : 8pt;
margin-top : 0;
padding-top : 0;
}
#lettre {
font-weight : bold;
}
Le lien pour visualiser ceci est dans ma signature.
Merci d'avance.
Modifié par Bellami (12 Nov 2006 - 19:37)