darkprince
Programmer
Hello
Below is the setup for my page and the problem is that I have an iframe frame in the middle cell and it takes out the right cell in the table and makes the left one wider that it should be.
If you take out the iframe code then it goes the way it should be. Can I make it so the table is right with the iframe still in it?
Thanks in advance
Ciao
<html>
<head><title>Title</title></head>
<style>
A:link {COLOR: #ffffff; TEXT-DECORATION: none}
A:visited {COLOR: #ffffff; TEXT-DECORATION: none}
A:hover {COLOR: #000000; TEXT-DECORATION: none}
A:active {COLOR: #ffffff; TEXT-DECORATION: none}
BODY {
SCROLLBAR-FACE-COLOR: #E1DDDC; FONT-SIZE: 10px; SCROLLBAR-HIGHLIGHT-COLOR: #808080; SCROLLBAR-SHADOW-COLOR: #808080; SCROLLBAR-3DLIGHT-COLOR: #808080; SCROLLBAR-ARROW-COLOR: 808080; SCROLLBAR-TRACK-COLOR: #c0c0c0; FONT-FAMILY: arial, helvetica, sans-serif; SCROLLBAR-DARKSHADOW-COLOR: #135184; BACKGROUND-COLOR: #ffffff
</style>
<body leftMargin=0 rightMargin=0 topMargin=0 bottomMargin=0 marginwidth=0 marginheight=0 text="#ffffff">
<div align="center">
<table border="1" height="600" width="783" cellspacing="0" cellpadding="0" bordercolor="#386AD0" class="box">
<tr>
<td width="126" valign="top" background="leftbg.jpg"><font face="tahoma" size="1">
Text
</td>
<td align="center" valign="top" bgcolor="#E1DDDC" width="531">
<iframe name="iframe" src="news.html" width="500" height="400" frameborder="1">
</td>
<td align="right" valign="top" background="rightbg.jpg" width="126"><font face="tahoma" size="1">
Text
</td>
</tr>
</table>
</div>
</body>
</html>
Below is the setup for my page and the problem is that I have an iframe frame in the middle cell and it takes out the right cell in the table and makes the left one wider that it should be.
If you take out the iframe code then it goes the way it should be. Can I make it so the table is right with the iframe still in it?
Thanks in advance
Ciao
<html>
<head><title>Title</title></head>
<style>
A:link {COLOR: #ffffff; TEXT-DECORATION: none}
A:visited {COLOR: #ffffff; TEXT-DECORATION: none}
A:hover {COLOR: #000000; TEXT-DECORATION: none}
A:active {COLOR: #ffffff; TEXT-DECORATION: none}
BODY {
SCROLLBAR-FACE-COLOR: #E1DDDC; FONT-SIZE: 10px; SCROLLBAR-HIGHLIGHT-COLOR: #808080; SCROLLBAR-SHADOW-COLOR: #808080; SCROLLBAR-3DLIGHT-COLOR: #808080; SCROLLBAR-ARROW-COLOR: 808080; SCROLLBAR-TRACK-COLOR: #c0c0c0; FONT-FAMILY: arial, helvetica, sans-serif; SCROLLBAR-DARKSHADOW-COLOR: #135184; BACKGROUND-COLOR: #ffffff
</style>
<body leftMargin=0 rightMargin=0 topMargin=0 bottomMargin=0 marginwidth=0 marginheight=0 text="#ffffff">
<div align="center">
<table border="1" height="600" width="783" cellspacing="0" cellpadding="0" bordercolor="#386AD0" class="box">
<tr>
<td width="126" valign="top" background="leftbg.jpg"><font face="tahoma" size="1">
Text
</td>
<td align="center" valign="top" bgcolor="#E1DDDC" width="531">
<iframe name="iframe" src="news.html" width="500" height="400" frameborder="1">
</td>
<td align="right" valign="top" background="rightbg.jpg" width="126"><font face="tahoma" size="1">
Text
</td>
</tr>
</table>
</div>
</body>
</html>