Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Placing iframes within an image design

Status
Not open for further replies.
Jun 3, 2002
11
US
I have a photoshop web interface converted to DW and I want to place an iframe in a certain part of the interface where other html files, pics, and movies will load when a user clicks certain buttons outside of the frame. I have a portion of the interface cut out for the frame but I am not sure how to place an iframe in that area. I want that area to be the target for new html, etc. Is it possible to place an iframe in that area? Basically, Is there any way to draw a frame within an interface without having an actual frame layout. I would love any help. Thank you very much.
 
yes like you said just insert an iframe it is a frame not in a frameset....go to and dl their iframe extension
[afro] sometimes i just cant take it...then i realize its already to late
 
I am designing a site right now that (I think) does what you are trying to do.

The <iframe> is set inside of a <td> and it works pretty well, except of course in NN4

You can view the site (in process) at:


I used this code:
<td colspan=3 align=&quot;left&quot; bgcolor=&quot;#33CCFF&quot; valign=&quot;middle&quot;>
<p><iframe src=&quot;float.htm&quot; name=&quot;floatnews&quot; width=&quot;490&quot; height=&quot;300&quot; align=&quot;center&quot; class=&quot;left_small&quot;>This
is the Brenda White Online News Page. If you can see this text, your browser
is too old to view this website. Go to <a href=&quot;../oldbrowser.htm&quot;>The
Upgrade Information Page</a> to update your browser.</iframe> </p>
</td>

-pindky
 
IFrames can be places anywhere within an HTML page. As far as positioning is concerned, either you place it in a table cell or you may use a style sheet.
All you nned to do is to define IFrame withing the document and specify an inline style for positioning.
After that on any desired event you can reload that IFrame with any URL of your choice.
Cheers

---- YEAR2000 :->
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top