View Full Version : iFrames - confused - need help!


*tepiqua
01-11-2003, 02:28 AM
Ok, here is the current code I am using for my iframe, <IFRAME name=frame src=http://www32.brinkster.com/blaccat/note.htm width=200 height=165 frameborder=0 scrolling=auto>
</IFRAME>
But I cannot get it to go in the right top sqaure of my image!
Here is the image
http://www32.brinkster.com/blaccat/Layoutpage.jpg
Could any body redo that HTML into a iFrame HTML so that the iFrame is placed over that corner, THANK YOU TO ANYONE WHO TRYS TO :)

acktacky
01-11-2003, 03:09 AM
Well first... I don't know if it will work, because I never used it... But here... Have the bodies margins at 0, so it will be on the very edges of the browser.. like this...

<body bgcolor="#000000" leftmargin="0" marginheight="0" marginwidth="0" topmargin="0" bottommargin="0" rightmargin="0">

And then just use <p align="right"> around the iframe, and it should be on the right of the screen.

You could always use a div, but some computers don't support it *coughmacscough*... So try that.

Again, I don't know if it will work, but it should.

*tepiqua
01-11-2003, 03:11 AM
*Thank you very much for helping me, I also do hope it also works! :crosses her fingers:

*tepiqua
01-11-2003, 03:18 AM
*Sorry, acktacky, could you put the HTML you suggested in with me HTML that I put? Then, could you also include the picture img url, because this is confusing me VERY mucho.

acktacky
01-11-2003, 03:51 AM
OH wait... Duh... Okay hold up... You should actually use tables to do this... :P

<html>
<head><title></title></head>
<body bgcolor="#000000" leftmargin="0" marginheight="0" marginwidth="0" topmargin="0" bottommargin="0" rightmargin="0">
<table width="600" background="http://www32.brinkster.com/blaccat/Layoutpage.jpg"><tr><td><img src="SPACER.GIF" height="0" width="400"></img></td><td>
<IFRAME name=frame src=http://www32.brinkster.com/blaccat/note.htm width=200 height=165 frameborder=0 scrolling=auto>
</iFRAME></td></tr></table>
</body></html>

Um... There.. O.o;; You should go to the Lissa Explains it All, and search for the SPACER.GIF. That way you can move the iframe all the way to the end... You could also set the width of the td to the a size that you want, but the spacer is easier to use.

Sorry if I'm making this confusing. I'm not very good at explaining thing. 6_9

*tepiqua
01-11-2003, 12:21 PM
*thank you, much better, i had a past layouts with iFrames, but i have gotten it from a friend, so i already have the spacer.gif :)

acktacky
01-11-2003, 07:46 PM
Alright. ^_^ You're welcome.