Hello everyone,
I'm hoping someone can help. I'm trying to build a web page that will consist of one table. That table will have 3 rows. The top row contains the company name. The bottom row has the copyright info.
Now the middle row is where the problem lies. It should have 2 seperate tables. The left table should be approximatly 100 pixels wide. The table on the right should be as wide as the remainder of the outer table.
For some reason, can't get the table on the right to apear within the width of the outer table.
My HTML code as of yet follows below.
TIA
<html>
<body><table border=1>
<tr><td>
<CENTER><H1>New Horizon Properties & Investments, L.L.C.</H1></CENTER>
</td></tr>
<!--Start second row>
<tr>
<td width=100 valign="top" align="right">
<!--Start of the left table>
<table border=2>
<tr>
<td><a href=home.html>Home</td>
</tr>
<tr>
<td><a href=seller.html>Seller's Area</td>
</tr>
<tr>
<td><a href=buyer.html>Buyer's Area</td>
</tr>
</table>
</td>
<!--This is still in the testing phase, once it works I'll update>
<!--content of this table>
<!--Start of the right table>
<td width=100 valign="top" align="left">
<table border=2>
<tr>
<td><a href=home.html>Home</td>
</tr>
<tr>
<td><a href=seller.html>Seller's Area</td>
</tr>
<tr>
<td><a href=buyer.html>Buyer's Area</td>
</tr>
</table>
</td>
</tr>
<tr><td><center>Copyright 2004 New Horizon Properties & Investments, L.L.C. All Rights Reserved.</center></td></tr>
</table></body>
</html>
I'm hoping someone can help. I'm trying to build a web page that will consist of one table. That table will have 3 rows. The top row contains the company name. The bottom row has the copyright info.
Now the middle row is where the problem lies. It should have 2 seperate tables. The left table should be approximatly 100 pixels wide. The table on the right should be as wide as the remainder of the outer table.
For some reason, can't get the table on the right to apear within the width of the outer table.
My HTML code as of yet follows below.
TIA
<html>
<body><table border=1>
<tr><td>
<CENTER><H1>New Horizon Properties & Investments, L.L.C.</H1></CENTER>
</td></tr>
<!--Start second row>
<tr>
<td width=100 valign="top" align="right">
<!--Start of the left table>
<table border=2>
<tr>
<td><a href=home.html>Home</td>
</tr>
<tr>
<td><a href=seller.html>Seller's Area</td>
</tr>
<tr>
<td><a href=buyer.html>Buyer's Area</td>
</tr>
</table>
</td>
<!--This is still in the testing phase, once it works I'll update>
<!--content of this table>
<!--Start of the right table>
<td width=100 valign="top" align="left">
<table border=2>
<tr>
<td><a href=home.html>Home</td>
</tr>
<tr>
<td><a href=seller.html>Seller's Area</td>
</tr>
<tr>
<td><a href=buyer.html>Buyer's Area</td>
</tr>
</table>
</td>
</tr>
<tr><td><center>Copyright 2004 New Horizon Properties & Investments, L.L.C. All Rights Reserved.</center></td></tr>
</table></body>
</html>
Comment