

Relating to http://www.aon-network.com/now-playing.h
In Firefox, Safari for Windows, Chrome and Opera it shows a transparent background so the Joomla template's wallpaper appears behind the text. In Internet Explorer 7 (and Avant Browser, which I assume is based on IE) the background appears white unless I add the "if" conditional code to set the bk as dark.
What I want is for IE to display the page the same as the other browsers, allowing the wallpaper to show underneath the text, but IE being non-standards-compliant (gee, thanks, Mr. Balmer) I can't figure out how to get it to play nice with transparencies.
The other thing I'd like is for the text "(Automatically refreshes once per minute) " to remain in place at the bottom of the page and allow the song history above it to scroll out of sight, if the song titles are way long, without carrying that text with it. I suppose to do this I'd have to create another table containing the text?
Here's the PHP script:
<?php
header("Refresh: 60;");
?>
<head>
<style type="text/css">
html,
body {
allowtransparency="true"
background-color: transparent;
}
</style>
<!-- ... -->
</head>
<?php
include("includes.php");
?>
<HTML>
<TITLE>AoN Network Radio Status</TITLE>
<BODY bgcolor transparency="0">
<!--[if gte IE 7]>
<BODY bgcolor="121212">
<![endif]-->
<TABLE align="center" width="95%">
<TR><TD><font face="Arial" color="FFFFFF" size="2">
Current Show: <b><font color="89A5C8"><?php echo $server[0]['desc']; ?></font></b><br>
Current Song: <b><font color="89A5C8"><?php echo $current_song; ?></font></b><br>
Current Listeners: <b><font color="89A5C8"><?php echo $listeners; ?></font></b><br><br></font><TD><TR>
</TABLE>
<?php
$i = 0;
echo "<table align=\"center\" width=\"60%\">
<tr>
<td rowspan=\"".sizeof($lastsong)."\" valign=\"top\"><font face=\"Tahoma\" color=\"CCCCCC\" size=\"1\">Previous ".sizeof($lastsong)." Tracks:</font></td>";
while ($lastsong[$i])
{
if ($i != 0)
{
echo "<tr>";
}
echo "<td><font face=\"Tahoma\" color=\"CCCCCC\" size=\"1\">";
echo $lastsong[$i];
echo "</font></td></tr>";
$i++;
}
echo "</TABLE>";
?>
<br>
<br>
<br>
<br>
<br>
<p style= "text-align: center; color: #89A5C8; font-face: arial; font-size: 12;">
<b>
(Automatically refreshes once per minute)
</b>
</p>
</BODY>
</HTML>