Link to home
Start Free TrialLog in
Avatar of reidarj
reidarj

asked on

Trouble with tables...

I've got a page with to frames. One over the other. I want to have one table in each frame. But when I center those two tables they don't come out at the same mid-position. The lower one are not right below the upper one...
How can I solve this?
Avatar of brice123
brice123

Could you post some HTML sample code?
Avatar of reidarj

ASKER

The upper frame HTML code:
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Ny side 3</title>
<base target="hoved">
</head>

<body>

<div align="center">
  <center>
  <table border="1" width="300">
    <tr>
      <td width="33%">&nbsp;</td>
      <td width="33%">&nbsp;</td>
      <td width="34%">&nbsp;</td>
    </tr>
  </table>
  </center>
</div>

</body>

</html>

*******************
The lower HTML code

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Ny side 4</title>
</head>

<body>

<div align="center">
  <center>
  <table border="1" width="300">
    <tr>
      <td width="33%">&nbsp;</td>
      <td width="33%">&nbsp;</td>
      <td width="34%">&nbsp;</td>
    </tr>
  </table>
  </center>
</div>

</body>

</html>

****************
And the frame HTML

<html>

<head>
<title>Ny side 2</title>
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
</head>

<frameset rows="158,*">
  <frame name="topptekst" scrolling="no" noresize target="hoved" src="ny_side_3.htm">
  <frame name="hoved" src="ny_side_4.htm">
  <noframes>
  <body>

  <p>Denne siden bruker rammer, men leseren din støtter ikke disse.</p>

  </body>
  </noframes>
</frameset>

</html>

ASKER CERTIFIED SOLUTION
Avatar of brice123
brice123

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I agree ...

:(  Frustrating isn't it!
Avatar of reidarj

ASKER

:)