View Full Version : Any way to?


Bieth
07-16-2003, 05:31 AM
Hello everyone, I am very new here and I was wondering I am wanting to make a photo gallery. And I want to make it with iframes! Is there anyway to have a table on top of the page, and then below that a table below that (on the left), and an Iframe (on the right side), and then another table below those? So that it would be layed out like this.....

table





table Iframe




table

Any help is appretiated!

kittycat
07-16-2003, 04:25 PM
You could put in in one big table... ie

<table>
<tr>
<td>first table code</td>
</tr>
<tr>
<td>second table code</td>
<td>iframe code</td>
</tr>
<tr>
<td>third table code</td>
</tr>
</table>

Bieth
07-16-2003, 06:08 PM
Thank you so much!