Guest_imported
New member
- Jan 1, 1970
- 0
I am having some problems working with Iframes inside a table. I'm attempting to set up a main page and a table of contents page side by side. I need them to be in a table so that they can dynamically change size when the window resizes. The following is the markup that I'm using currently:
<table width="100%" height="75%" style="margin-bottom:0;padding:0;border:none">
<tr>
<td style="border:none">
<iframe align="left" frameborder = "0" marginheight = "1" hpspace="0" vspace="0" id="menu" src="Search Results.html" name="menu" width="20%" height="100%" scrolling="auto">
</td>
<td style="border:none">
<iframe align="right" hpspace="0" vspace="0" name="library" id="library" src="HomePage.html" width="80%" height="100%" scrolling="auto">
</td>
</tr>
</table>
It seems that this should produce two table cells, each with an iframe in it. However, it generates one cell instead with both iframes in it. This works but doesn't allow me to put anything else anywhere near the iframes. I would like to shorten the table of contents iframe, and put copyright information under it. the copyright information would stay static, while the information in the iframe would change.
I hope the problem makes sense, and please let me know if I'm missing something. Any help, ideas, or suggestions would be greatly appreicated.
Michael D. Lundin
Technical Writer
(michael.lundin@summitsite.com)
<table width="100%" height="75%" style="margin-bottom:0;padding:0;border:none">
<tr>
<td style="border:none">
<iframe align="left" frameborder = "0" marginheight = "1" hpspace="0" vspace="0" id="menu" src="Search Results.html" name="menu" width="20%" height="100%" scrolling="auto">
</td>
<td style="border:none">
<iframe align="right" hpspace="0" vspace="0" name="library" id="library" src="HomePage.html" width="80%" height="100%" scrolling="auto">
</td>
</tr>
</table>
It seems that this should produce two table cells, each with an iframe in it. However, it generates one cell instead with both iframes in it. This works but doesn't allow me to put anything else anywhere near the iframes. I would like to shorten the table of contents iframe, and put copyright information under it. the copyright information would stay static, while the information in the iframe would change.
I hope the problem makes sense, and please let me know if I'm missing something. Any help, ideas, or suggestions would be greatly appreicated.
Michael D. Lundin
Technical Writer
(michael.lundin@summitsite.com)