Klingt für mich nach:
img.footer {
position:fixed;
bottom:0;
}
Für einen modernen Browser ja - für einen Browser der position: fixed; nicht versteht (Internet Explorer 6 z.B.) heisst das etwa so viel wie:
~~~css
img.footer {
position: static;
bottom: 0
}