Yes, this is possible with CSS only (I'll move the thread to the CSS forum for you). You could put the logo in a container (with the class of logo in this example; you could just as well just use the image without the container if you want though) and give it the following CSS rules:
Code:
div.logo {
bottom: 0;
position: fixed;
}
That should work in all popular browsers except IE6 (which is strangely enough still popular among some audiences). If you want this to work in IE6 as well, you will need to do a bit more work, this article shows you how:
http://ryanfait.com/resources/fixed-positioning-in-internet-explorer/
Good luck!
Bookmarks