Forum Moderators: open

Message Too Old, No Replies

3 table page in Dreamweaver

         

Bubzeebub

1:17 pm on Feb 9, 2005 (gmt 0)

10+ Year Member



Can anyone tell me how to go about creating a page in Dreamweaver that has a header going horizontally. Below that I'd like to have a column to the left that's narrow, a 2nd column in the center that's wider and a 3rd column that is similar to the 1st column.

Greatly appreciated.

supermanjnk

3:13 pm on Feb 9, 2005 (gmt 0)

10+ Year Member



create a table that is three wide by 2 high
on the top row of the table select them all right click and there should be an option to merge the tables, this will make it one big cell that takes up the whole width of the table, next set the width of the left side to how wide you want it, same with the right, and if you want the center to be dynamic leave the width blank, if you want it fixed set a width to it.

should resemble something like this.
<table border="1" width="300">
<tr>
<td ColSpan="3">&nbsp;</td>
</tr>
<tr>
<td width="50">&nbsp;</td>
<td>&nbsp;</td>
<td width="50">&nbsp;</td>
</tr>
</table>

widths i have set are just example.

Bubzeebub

10:35 pm on Feb 9, 2005 (gmt 0)

10+ Year Member



thanks Superman...appreciate it.