In Safari, the page shows nothing... on multiple ocassions you have this: You need to remove that extra quote.
Also your comment tags are wrong, you have:
Code:
<!---start mp3 ---!>
when it should be
Code:
<!---start mp3 --->
Also in your style sheets (you can put them all into 1<style> tag, you have
Code:
{
font-family: tahoma;
font-size: 9px;
color: #B2A27E;
}
You need a selector before the {. Also in the style:
Code:
<style type="text/css">
<!--
.style1 {
font-family: Tahoma;
font-size: 10px;
color: #b2a27e;
}
.style2 {
font-family: Tahoma;
font-size: 10px;
font-weight: bold;
color: #4C2401;
}
.style4 {
font-family: Tahoma;
font-size: 9px;
font-weight: bold;
color: #a23b01;
}
.style5 {
font-family: Tahoma;
font-size: 9px;
color: #5d533b;
}
</style>
You forgot the closing comment tag, it should be
Code:
<style type="text/css">
<!--
.style1 {
font-family: Tahoma;
font-size: 10px;
color: #b2a27e;
}
.style2 {
font-family: Tahoma;
font-size: 10px;
font-weight: bold;
color: #4C2401;
}
.style4 {
font-family: Tahoma;
font-size: 9px;
font-weight: bold;
color: #a23b01;
}
.style5 {
font-family: Tahoma;
font-size: 9px;
color: #5d533b;
}
--></style>
That fixes the rendering issues in Safari, and the code is more accurate. For the IE problem, try making the background of the news.htm file the background you want for the background of the iFrame, IE may not support iFrame backgrounds via CSS. Or try adding
Code:
transparency="true"
to your iFrame tag.
Last edited by funkdaddu; 11-17-2005 at 11:15 AM..
|