The more I look at what you have, the more I'm thinking we may have to go with a slightly different technique to get the positioning you want. Where you have:
Code:
<P align=center><SPAN
style="FONT-WEIGHT: 700; FONT-VARIANT: small-caps"><I><FONT
face=Verdana color=#ffffff size=2>God's Word For
Today</FONT></I></SPAN></P>
just a little below that where you have:
Code:
<center>
<font face="arial, helvetica" size="-2">dd</center></td>
substitute:
Code:
<iframe id="godstuff" src="" width=500 height=100 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>
for just the 'dd' part (you may want to adjust the width and height)
and get rid of the lines:
Code:
var iframeprops2='width=500 height=800 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'
and
Code:
document.write('<br><iframe id="godstuff" src="" '+iframeprops2+'></iframe>')
from the script.
I think I know where you want the inspiration message to go. If I am right, where you have:
Code:
<p align="center">
<img border="0" src="artwork/ATT00029.jpg" width="220" height="158"><br>
Take out whatever portion of that and what follows it that represents the 'inspiration' content and substitute:
Code:
<iframe id="inspstuff" src="" width=200 height=200 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>
You may want to adjust the width and height.
get rid of:
Code:
var iframeprops1='width=375 height=800 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'
and:
Code:
document.write('<br><iframe id="inspstuff" src="" '+iframeprops1+'></iframe>')
from the script.
Works here, so if you have trouble, let me know.
Bookmarks