Quote:
Originally Posted by kimberlybarryd
|
Sorry, I misread your opening post. Missed the word "Stationary"
Here is the CSS they are using for their footer...
Code:
#yourFooter {
background-image:url(bottom.png);
background-position:center center;
background-repeat:no-repeat;
bottom:0px;
height:200px;
position:fixed;
width:100%;
z-index:5;
}
Replace "bottom.png" with whatever image you wish to use.
Then put this in your page to call it:
Code:
<div id="yourFooter" />
I haven't tested this myself, but it should work.
HTH