Thank you Jason and b01scOtt, both for your solution (Jason) and for your patience.
Main Topics
Browse All TopicsCan someone recommend a good tutorial or a step-by-step explanation of using frames and iframes in Dreamweaver CS3 for MAC. I am trying to use an iframe on a webpage to display an RSS newsfeed. Since I can't get it to work, I am obviously doing something stupid. When I go to INSERT (in Dreamweaver) and choose IFRAME, the code appears (in code view) but when I try to view the result in a browser there is nothing showing. (If I put in a iframe rather than a frame I can see the frame in the browser but can't see anything inside it).
Adobe was no help at all when I called them ("that's beyond the scope of customer support"). I'm not asking someone to teach me all about frames and iframes (though I wouldn't object if someone wanted to) but hopefully someone can direct me to a training resource that will do exactly that.
Thank you
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: jason1178Posted on 2008-03-18 at 16:29:36ID: 21157190
Hi Dick_A_Barrett,
eed.html"> </iframe>
eed.html"> You don't support iFrames. Too bad.</iframe>
ags/tag_if rame.asp
Okay, first off, (and Scott, jump in as needed!), there is a difference between frames and iframes.
"Frames" are an outmoded way of subdividing a web page into different sections (header, navigation, content). So we don't want to talk about these too much as I don't think it applies.
An iframe is a way of embedding content from another page or site in the page. It stands for "inline frame" and can be used to pull in a newsfeed.
The problem with iframes and DW is that they aren't supported all that well through the panels. You will need to do a lot of this work in code view.
First, make sure you have the address of the feed you want to embed.
Next, do Insert | HTML | Frames | iFrame
You should see the screen go into Split view (if you were in design view) and you will see <iframe></iframe> tags.
Now, the iframe tag is odd. You embed the content from the external source by using a src parameter and not by putting anything in between the tags:
<iframe src="http://somesite.com/f
What you put in between the tags will be displayed if the user's browser does not support iframes:
<iframe src="http://somesite.com/f
There are more parameters that can be set:
http://www.w3schools.com/t
Feel free to ask us to clarify any of this.
J