Link to home
Start Free TrialLog in
Avatar of Seever
Seever

asked on

Frame question

Hello, i have a frameset with 3 frames. Top, middle and bottom.

My questions:

1) I need a table at the bottom in the top frame. What's the best way to do that??

2) I also need a table in the middel frame that go's from top to bottom. What's the best way to do that??

There is also a table at the bottom frame.
all tables has to be in the center.

The page should look like you have a table with 3 rows.

All idee's are welcome.
Avatar of nfroio
nfroio
Flag of United States of America image

Why not just loose the frames and make a centered table with three rows???

<html>

<table width="100%" border="1" cellspacing="1" cellpadding="1">
     <tr>
       <td align=center>
         yada yada
       </td>
     </tr>

     <tr>
       <td align=center>
         yada yada
       </td>
     </tr>

     <tr>
       <td align=center>
         yada yada
       </td>
     </tr>
</table>

</html>
Avatar of Seever
Seever

ASKER

I want a menu bar at the top frame. When i click on a item to open a other page in the middle page then i don't want that the top frame refreshes.
Avatar of Seever

ASKER

I want a menu bar at the top frame. When i click on a item to open a other page in the middle page then i don't want that the top frame refreshes.
ASKER CERTIFIED SOLUTION
Avatar of volvo
volvo

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
top frame
-------------
<table height="100%" align="center">
<tr>
<td> some here if you want or just lose this whole row if you don't need it</td>
</tr>
<tr>
<td valign="bottom">navigation menu or nested table or whatever</td>
</tr>
</table>
--------------

middle frame
--------------
<table height="100%" align="center">
<tr>
<td> content </td>
</tr>
</table>
--------------

bottom frame
--------------
another table down here





hope this helps

JimS.
Avatar of Seever

ASKER

That's what i need.