OrliBloomIsFine
03-01-2003, 08:25 AM
Hi, I need help with my iframe. I know how to make one, but I just don't know how to put text, links and pictures in it. I know I can, I've seen it on other sites like that, but when I try to put things in, it comes up NEXT to the frame, not in it, and inside my frame is the Geocities homepage. Can someone tell me what stupid mistake I'm making?
Sheila
03-01-2003, 08:49 AM
Let's say you using this as your inline frame code
<iframe src="inline.html" name="inlineframe" width="your width" height="your height" style="border: 5 solid #ff33cc"></iframe>
Then you have to make the pages that appear in the iframe. So you need to make a page called inline.html ... that will be your 'main' page
You put your backgrounds, colors, etc on each page that appears in the inline frame.
To make your links appear in the inline frame, you have to target your links. For example,
<a href="Your Link URL" target="inlineframe">Link Name</a>
Hope that made sense.
OrliBloomIsFine
03-01-2003, 09:55 AM
Yes, I understand now, thank you!
OrliBloomIsFine
03-01-2003, 10:43 AM
Hang on, I understood but it's still not working. This is the html on my page:
<iframe src="frame.html" name="myframe" width="455" height="522" style="border: 5 solid 0000ff"></iframe>
This is the html on my frame.html page:
<html>
<head>
<title>My Site</title>
</head>
<body>
<p>Hi, and welcome to my site!</p>
</body>
</html>
what am I doing wrong now?
epolady
03-01-2003, 10:46 AM
Try
<iframe src="frame.html" name="myframe" width="455" height="522" style="border: 5px solid #0000ff"></iframe>
OrliBloomIsFine
03-01-2003, 10:50 AM
still not working....stupid frames...
epolady
03-01-2003, 10:52 AM
Are you viewing this page on the web? Or on your computer?
OrliBloomIsFine
03-01-2003, 11:19 AM
oh wait its working...next time, ignore me when I say something isn't working. because it is. i'm stupid and now I'm gonna shut up.