1
I leave this below only for information even... CSS of my page:
body{
margin: 0 auto;
padding: 0;
min-height:100%;
position:relative;
}
head {
display: none;
position: relative;
min-height: 100%;
}
html{
height: 100%;
}
div {
display: block;
}
#container{
position: relative;
min-height: 100%;
}
#IGN_SCT{
height: 100%;
}
.corpo{
position: relative;
width: 1024px;
left: 50%;
margin-left: -512px;
min-height:2100px;
}
I would like it to be fixed at the bottom of the page regardless of the content above it
Have you read that question: Footer always at the bottom of the page?
– Woss
.footer { position: Absolute; left: 0; bottom: 0;}
– user60252