I can't add a footer to the bottom of the page. It always displays in the middle of the page or something like that. It would be cool if there was some way to modify the footer div element to always show on the bottom of the page, even after adding more stuff to the center/top of the page (so not a fixed position).
Here's what I'm up to in CSS: (the id of the div is ofc "footer")
#footer {
text-align: center;
margin: 0px auto;
position: bottom;
bottom: 0px;
font-size: 10px;
padding: 10px;
}
I used something similar for my header (logo), and based on that I tried working the same with the footer with no success. Here's my header CSS, just for reference:
#logo {
position: center;
margin:0px auto;
top:0px;
text-align: center;
}
I used an image for the logo without any text and only text for the footer.