What are you wanting your image to do.:
+ Stay perfectly still while the rest of the page scrolls up and down beside it
+ Scroll with the rest of the page.
In the interim you can try adjusting the CSS for that area:
template.css line 662
#ja-deco {
bottom:0;
float:left;
left:0;
overflow:hidden;
position:fixed;
width:220px;
}
Changing the RED to read “position:absolute;” will cause the image not to move.
Changing the BLUE above will position the image vertically a specific distance from the bottom of the page.
You can also mix and match to suit your taste.
Have fun!
John.