How do I get rid of the line around the iframe?
Change the iframe code to this:
<iframe src="http://www.melendy-mi.us/spartaumc/spartaumc.html" name="_parent" style="width:740px; Height:1200px; border:0"></iframe>
How do I make the page smaller?
You need to put your javascript in a div with a float of left. Then add a float:left to the div with the iframe. Like so:
Code:
<div style="float:left">
(script for dhtml menu)
</div>
<div style="position:relative; top: -320px; left: 255px; float:left">
(iframe tag)
</div>
How do I get the links to open in the iframe?
You would need to ask whoever wrote the js how to make the links work in an iframe. It looks as if it's set up to work on the same page only.
Bookmarks