It all seem so simple yet i am stuck. please help.
My original page contains too much text so i am quoting here a very simple example to explain my problem.
In a frame set i have two frames, each contains tables. I just cannot align table from top fram to table on other frame. Table on mainbody fram slides a little left for reason unknown to me.
Can anyone out there help me please!!!!!
Frame set:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="38,*" frameborder="NO" border="0" framespacing="0" cols="*" >
<frame name="topFrame" scrolling="NO" noresize src="c.htm" >
<frame name="mainFrame" src="b.htm">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</noframes>
</html>
- <html>
- <head>
- <title>Untitled Document</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- </head>
- <frameset rows="38,*" frameborder="NO" border="0" framespacing="0" cols="*" >
- <frame name="topFrame" scrolling="NO" noresize src="c.htm" >
- <frame name="mainFrame" src="b.htm">
- </frameset>
- <noframes>
- <body bgcolor="#FFFFFF" text="#000000">
- </body>
- </noframes>
- </html>
c.htm is: (i added div align=center as a desperate attemt which made no difference)
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div align=center>
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td> </td>
</tr>
<tr>
<td bgcolor="#FF0000">This</td>
</tr>
</table>
</div>
</body>
</html>
- <html>
- <head>
- <title>Untitled Document</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- </head>
- <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
- <div align=center>
- <table border="0" cellspacing="0" cellpadding="0" align="center">
- <tr>
- <td> </td>
- </tr>
- <tr>
- <td bgcolor="#FF0000">This</td>
- </tr>
- </table>
- </div>
- </body>
- </html>
b.htm is:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div align=center>
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="#000099">This</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</div>
</body>
</html>
- <html>
- <head>
- <title>Untitled Document</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- </head>
- <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
- <div align=center>
- <table border="0" cellspacing="0" cellpadding="0" align="center">
- <tr>
- <td bgcolor="#000099">This</td>
- </tr>
- <tr>
- <td> </td>
- </tr>
- </table>
- </div>
- </body>
- </html>