General CSS question

k, im alil new 2 css. (bare with the explantion of my prolbem)

i have a table on my main page(default.hml). top & bottom. bottom (home.htm) is loaded using…


<LINK REL="STYLESHEET" HREF="basic.css" TYPE="text/css">
</HEAD>
<BODY ID='Standard-default'>
<CENTER>
  <TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH=780 HEIGHT=241%>
    <TR> 
      <TD WIDTH=780 height="25" ALIGN=center VALIGN=middle> <A HREF='default.htm'><IMG SRC='images/logo.gif' BORDER=0 ALT='Plan'ALIGN=left></A><BR> <BR><BR>
        <FONT ID='menu'> 
    <DIV ALIGN=left> <A HREF='welcome.htm' TARGET='data'>Welcome</A>| <A HREF='t1.htm' TARGET='data'>Contact</A> | <A HREF='t2.htm' TARGET='data'>News &amp; Events</A> | <A HREF='t3.htm' TARGET='data'>Resources</A> | <A HREF='t4.htm' TARGET='data'>Department &amp; Programs</A> | <A HREF='t5.htm' TARGET='data'>Faculty</A> | <A HREF='t6.htm' TARGET='data'>Reading Corner </A> | <A HREF='t7.htm' TARGET='data'>linkTest02</A> 
        </DIV>
          
         </FONT>
          &nbsp;<BR>
         <BR>
        <FONT ID='StandardGrey'>
          <BR>
          &nbsp; 
        </DIV>
        </FONT> </TD>
    </TR>
      <TD height="306" ID='MainMenu'> 
        <IFRAME NAME='data' SRC='home.htm' WIDTH=350 HEIGHT=100% SCROLLING=no FRAMEBORDER=0>
	</IFRAME>
    <TR> 
      <TD ALIGN=center VALIGN=middle>&nbsp;</TD>
    </TR>
  </TABLE>
	[/HMTL]

but my home.htm. is a table with 1 row & 2 cols. using this code...


```html

<LINK REL="STYLESHEET" HREF="basic.css" TYPE="text/css">
</HEAD>
<BODY ID='Standard'>
<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 HEIGHT=100% WIDTH=857>
  <TR>
    <TD width="50%" ID='Standard'> 
      <p><FONT ID='HeadingGrey'></FONT> 
        
        <FONT ID='SubHeading'> &nbsp;<IMG SRC='images/news_ev.gif'  ALIGN=left>&nbsp;<BR><BR><BR><BR>
        text<BR>
		text<BR>
	    text<BR> text
        <BR><BR>
        text 
        </FONT></p>
      <FONT><BR>
        <BR>
        </FONT> </TD>
    <TD width="50%" ID='Standard'> 
      <p><FONT ID='HeadingGrey'></FONT> 
        
        <FONT ID='SubHeading'> &nbsp;<IMG SRC='images/mission.gif'  ALIGN=left>&nbsp;<BR><BR><BR><BR>
        text<BR>
		text<BR>
	    text        <BR><BR>
        text        </FONT></p>
      <FONT><BR>
        <BR>
        </FONT>
  </TR>
</TABLE>

my problem is when i test it in explorer thru the main page (default.htm). i only see the left half of home.htm content. but when i test the home.htm i can see the left & right sides content…so i guess default is not loading all of
home’s content…pls any ideas?