Ive got a footer at the bottom of my webpage that i want to force onto the bottom of the page, so far ive been unsuccessful. Ive tried floating it and V aligning it, but nothing will work.
CSS
HTML
Cheers for any help
CSS
Code:
/*Style for the footer of the webpage*/
#footer {
background-color: black;
color: white;
font-style: italic;
text-align:right;
font-size: 15px;
border: 2px solid gray;
}
HTML
Code:
<!--start copyright bar-->
<div id="footer">
Copyright One Hump or Two
<!--End footer div-->
Cheers for any help