Hi it looks like you could do something like this:
immediately after
<div id="simplegallery1"></div>
you can add
<div id="stackedimage"><img src="http://empireairways.com/images/schedule.jpg" width="200" height="300" /></div>
making it look like this
Code:
<td valign="top"><!-- InstanceBeginEditable name="Main_Content" -->
<div id="simplegallery1"></div>
<div id="stackedimage"><img src="http://empireairways.com/images/schedule.jpg" width="200" height="300" /></div>
<!-- InstanceEndEditable --></td>
and then use some css like this
Code:
#stackedimage {
position: absolute; left:50%; margin-left:-440px; margin-top:-350px; z-index:2000;
}
Give it a try and edit it to your needs.
Bookmarks