BrUnEtTEBaBiE3
02-24-2003, 10:06 PM
My inline frame on the left is lined up fine but my right one isn't. I've tried practically everything and its starting to get fustrating! If you take a look here (http://angelfire.com/pop2/coley) and see whats wrong with it?! Thanks.. . .. .
MaGiCSuN
02-26-2003, 12:45 PM
Ok i have several things for you:
1. i looked at the source code from the second inline frame (right) and you have got the scrollbar codes etc BELOW the content. This has to be inside the <head> and the</head> tags. The right order for EVERY page is this:
<html>
<head>
css codes here, and javascripts etc.
</head>
<body>
codes for content here
</body>
</html>
you cannot have two pages in one file. You've got on everyfile first <body> then a bunch of javascript stuff or whatever it is and then you close the page with </html> etc and you start a new page in the same file again. This doesn't make sense to me. You can only have one time like the example above.
2. the following code is yourtable code with the iframe in it:
<TABLE WIDTH="90%" HEIGHT="200%" CELLSPACING="0" CELLPADDING="0" BORDER="0" STYLE="border:dashed 0px;" BORDERCOLOR="white">
<TR>
<TD Align="left" Height="30%" Colspan="2" STYLE="border:dashed 0px;" BORDERCOLOR="white">
<IMG SRC="topbritt.jpg"></TD>
</TR>
<TR>
<TD Valign="top" Wdith="100%" STYLE="border:dashed 0px;" BORDERCOLOR="white"><iframe src="inline.html" name="inlineframe" width="100%" height="100%" frameborder="0" border="0"></iframe>
<TD Valign="top" Width="38%" STYLE="border:dashed 0px;" BORDERCOLOR="white"><iframe src="inline2.html" name="inlineframe2" width="85%" height="100%" frameborder="0" border="0"></iframe>
</TD>
</</TD>
</TR>
</TABLE>
When you start with an <TD> you gotta end it to with an </TD> and you only ended it one time AFTER the code itself. The second </TD> is at the end, but you need to end the code RIGHT after the beginning. So the code should look something like this:
<TABLE WIDTH="90%" HEIGHT="200%" CELLSPACING="0" CELLPADDING="0" BORDER="0" STYLE="border:dashed 0px;" BORDERCOLOR="white">
<TR>
<TD Align="left" Height="30%" Colspan="2" STYLE="border:dashed 0px;" BORDERCOLOR="white">
<IMG SRC="topbritt.jpg"></TD>
</TR>
<TR>
<TD Valign="top" Wdith="100%" STYLE="border:dashed 0px;" BORDERCOLOR="white"><iframe src="inline.html" name="inlineframe" width="100%" height="100%" frameborder="0" border="0"></iframe></TD>
<TD Valign="top" Width="38%" STYLE="border:dashed 0px;" BORDERCOLOR="white"><iframe src="inline2.html" name="inlineframe2" width="85%" height="100%" frameborder="0" border="0"></iframe></TD>
</TR>
</TABLE>
3. Girl try to fix up your page. It's kinda a mess. (no offence) OPen a new file into notepad and also open the excisting file in another notepad window. Then start with <html> etc etc and add the javascript codes between the <head> and </head> tag and also the css codes for the scrollbar and links. Then ONLY add the content (so the text and tables and stuff) between the <body> and </body> tags.
I hope everything will work after you did this all. If you have questions feel free to ask them here. Good luck
love,
Mirna
BrUnEtTEBaBiE3
02-26-2003, 04:28 PM
lol sorry, i know it is a mess! hahaha When i was attempting to fix the problem everything got all messy. i'll make it all organized and stuff like that when i get on my other computer....I'll try what you said.. thanks! =D