Karl Swedberg wrote:
I think this is just a matter of setting the image's CSS properties
properly. Instead of using a "top" property, use "bottom":
img.someclass {
position: absolute;
bottom: 0;
left: 0;
}
Karl, that's brilliant. Works perfectly! Regards, Michael Price

