Forum Moderators: phranque
Is there a way to put the gif on top of the jpg, so that it stays right over it no matter what resolution it's looked at?
<div class="imagelayer"><img src="ani.gif"></div>
CSS:
.imagelayer {
width: 0px /** set your bg image width **/
height: 0px /** set your bg image height **/
background: url(bgimage.jpg);
padding: 0px 0px 0px 0px /** set your image position **/
}
And you can add the div to a table cell if you still want to keep them for layout purposes.
/* edited */