Pied de page

Résolu/Fermé
keoras - 24 juil. 2012 à 11:06
 keoras - 24 juil. 2012 à 14:16
Bonjour,

J'ai un problème le pied de page ne va pas tout en bas, il est bien en bas lorsque je suis en haut de la page mais lorsque je scroll il suit pas le mouvement il reste bloquer et au final il finit en haut.
<td><table width="100%" border="0" cellpadding="18" cellspacing="0" class="footer_legal_notice">
<td><a href="http://www.test.com" target="_blank" class="footer_legal_notice">© test</a>
<a href="#" style="position:fixed;bottom:5px;right:240px;">Top</a>

.footer_legal_notice {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
font-weight: normal;
color: #1A61A9;
position: absolute;
bottom: 0;
right: 465px;
}

Merci d'avance pour votre aide.

A voir également:

1 réponse

Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
24 juil. 2012 à 11:07
position: absolute; => position: fixed;
2
Merci mais le problème est que j'aimerais que le pied de page reste tout le temps en bas de la page et non en bas de la fenêtre comme c'est le cas maintenant.
0
Blunderer Messages postés 273 Date d'inscription mardi 17 juillet 2012 Statut Membre Dernière intervention 6 décembre 2012 83
24 juil. 2012 à 11:36
enleve ca alors
position: absolute;
bottom: 0;
right: 465px; 
0
nickel merci.
0
Enfaite ça marche toujours pas j'ai essayer avec les div mais je galère:

<div class="footer_legal_notice">
<a href="http://www.test.com" target="_blank" class="footer_legal_notice">© test</a>
<a href="#" style="toppage">Top</a>

.footer_legal_notice {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
font-weight: normal;
color: #1A61A9;
position: fixed;
bottom: 0;
right: 465px;
}

#toppage {
float: right;
text-align: right;
margin-right: 5px;
position: absolute;
bottom: 0;
}
0