Not sure if this hould go here, but ill give it a go:
Im trying to use an i-frame to display site news (not allowed to directly connect to the database, so an i-frame to a page on the other server is the only way). It displays fine in IE, but in FireFox it only displays at about 1/3 the height it should.
http://www.clan-toru.net/index.php?action=news
<? include ("stylesettings.php"); ?>
<table width="100%" height="100%" border="1" cellspacing="1" bordercolor="#000000" bgcolor="#FFFFFF">
<tr bordercolor="#000000" bgcolor="#E7E3EF">
<td height="10%" colspan="3"><div align="center"><a href="index.php"><img src="http://www.squallster.co.uk/clantoru/rotate.php" border="0"></a></div></td>
</tr>
<tr>
<td width="15%" valign="top" bordercolor="#000000" bgcolor="#E7E3EF" class="style2">
<p>
<? include ("links.php"); ?>
</p>
</td>
<td valign="top" bordercolor="#000000" bgcolor="#E7E3EF"><div align="center" class="style3">
<? $action = $_GET["action"];
if (!$action) { ?>
Welcome to Clan Toru.<br>
<br>
If you're wondering what Clan Toru is, it is a guild created primarily for Guild Wars,
although it may in the future spread to cover other games.<br>
<br>
If you're wondering what Toru means, its short for The Only Real Unicorns. :P
<? };
if ($action == "news") { ?>
<iframe src="http://www.squallster.co.uk/clantoru/news.php" frameborder="0" height="100%" width="100%"></iframe>
<? };
if ($action == "login") {
include ("login.php");
}; ?>
</div>
</td>
<td width="15%" valign="top" bordercolor="#000000" bgcolor="#E7E3EF" class="style2">
<? include ("members.php"); ?>
</td>
</tr>
</table>
Any help would be greatly appreciated.