IE Being a Bumhole
Posted: Tue Jan 27, 2004 7:54 pm
I have a website, and I recently changed the title tag..and now, it won't show in IE...Here is the code!
Here is a link to the site - http://eckclan.sytes.net
Here is the code that IE returns (View Source)
If anyone could help me with this problem, I would GREATLY appreciate it!
Code: Select all
<style type="text/css">
body {
font-family: arial, helvetica, serif;
}
ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
}
li { /* all list items */
float: left;
position: relative;
width: 10em;
}
li ul { /* second-level lists */
display: none;
position: absolute;
top: 1em;
left: 0;
}
li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
top: auto;
left: auto;
}
li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
}
#content {
clear: left;
}
</style>
<script type="text/javascript"><!--//--><![CDATA[//><!--
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
//--><!]]></script>
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=400,height=100,scrollbars=no,toolbar=no,status=no,resizable=yes');
return false;
}
//-->
</SCRIPT>
<link rel="stylesheet" href="style.css" type="text/css">
<title>East Coast Killers - EcK/title>
<?php
$tester = isset($_COOKIE["eckmusic2"]);
if ( $tester == true ) {
$dropdown = $_COOKIE['eckmusic2'];
?>
<BODY bgcolor ="#000000" text="#FFFFFF" link="#0000FF" vlink="#0000FF" alink="#0000FF" onLoad="popup('http://eckclan.sytes.net/cgi-bin/addmusic6.php', 'eckmusic')">
<?php
} else {
?>
<body bgcolor ="#000000" text="#FFFFFF" link="#0000FF" vlink="#0000FF" alink="#0000FF">
<?php
}
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="15">
<tr bgcolor="#111111">
<td width="100%"><center>East Coast Killers</center></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="15">
<tr bgcolor="#333333">
<td width="100%"><cetner><ul id="nav">
<li>Home
<ul>
<li><a href="main.html" target="Frame1">Home</a></li>
<li><a href="old.html">Old Website</a></li>
<li><a href="index.php">New Website</a></li>
</ul>
</li>
<li>Upload
<ul>
<li><a href="/cgi-bin/musicupload.php" target="Frame1">Music</a></li>
<li><a href="/cgi-bin/imageupload.php" target="Frame1">Pictures</a></li>
</ul>
</li>
<li>Forum
<ul>
<li><a href="http://eckclan.proboards19.com/index.cgi?board=general" target="Frame1">General</a></li>
<li><a href="http://eckclan.proboards19.com/index.cgi?board=Wars" target="Frame1">Matches</a></li>
<li><a href="http://eckclan.proboards19.com/index.cgi?board=challenge" target="Frame1" target="Frame1">Challenge</a></li>
<li><a href="http://eckclan.proboards19.com/index.cgi?board=site" target="Frame1">Website</a></li>
</ul>
</li>
<li>Music
<ul>
<li><A HREF="cgi-bin/addmusic6.php" onClick="return popup('cgi-bin/addmusic6', 'eckmusic')">Popup</A></li>
<li><a href="/cgi-bin/pickmusic.php" target="Frame1">Selector</a></li>
<li><a href="allmusic.php" target="Frame1">List</a></li>
</ul>
</li>
<li>Bios
<ul> <?php
$tester = isset($_SESSION["username"]);
if ( $tester == false ) {
?>
<li><a href="/cgi-bin/loginform.php" target="Frame1">Log In</li>
<?php
} else {
?>
<li><a href="/cgi-bin/logout.php" target="Frame1">Log Out</li>
<?php
}
?>
<li><a href="/cgi-bin/pro.php?user=main" target="Frame1">Index</a></li>
<li><a href="/cgi-bin/biosend2.php" target="Frame1">Modify Bio</a></li>
<li><a href="members.html" target="Frame1">Members</a></li>
</ul>
</li>
<li>Contact
<ul>
<li><a href="/cgi-bin/contact.php?page=challangeform" target="Frame1">Challange</li>
<li><a href="/cgi-bin/contact.php?page=joinform" target="Frame1">Join</a></li>
<li><a href="/cgi-bin/contact.php?page=adminform" target="Frame1">Contact Webmaster</a></li>
</ul>
</li>
</ul>
</center></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="70">
<tr>
<td width="100%"></td>
</tr>
</table>
<iframe name="Frame1" src="main.html" WIDTH=100% HEIGHT=80% scrolling="yes" frameborder="0"></iframe>
<center>
<img src="http://eckclan.sytes.net/images/flag-ani.gif">
<br>Made in America by <a href="/cgi-bin/contact.php?page=adminform">Straterra</a>
<br>
<?php
echo "Server information : ".$_SERVER["SERVER_SOFTWARE"];
echo "<br>";
include('http://eckclan.sytes.net/cgi-bin/counter.php');
?>Here is the code that IE returns (View Source)
Code: Select all
<style type="text/css">
body {
font-family: arial, helvetica, serif;
}
ul { /* all lists */
padding: 0;
margin: 0;
list-style: none;
}
li { /* all list items */
float: left;
position: relative;
width: 10em;
}
li ul { /* second-level lists */
display: none;
position: absolute;
top: 1em;
left: 0;
}
li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
top: auto;
left: auto;
}
li:hover ul, li.over ul { /* lists nested under hovered list items */
display: block;
}
#content {
clear: left;
}
</style>
<script type="text/javascript"><!--//--><!їCDATAї//><!--
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodesїi];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
//--><!]]></script>
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=400,height=100,scrollbars=no,toolbar=no,status=no,resizable=yes');
return false;
}
//-->
</SCRIPT>
<link rel="stylesheet" href="style.css" type="text/css">
<title>East Coast Killers - EcK/title>
<body bgcolor ="#000000" text="#FFFFFF" link="#0000FF" vlink="#0000FF" alink="#0000FF">
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="15">
<tr bgcolor="#111111">
<td width="100%"><center>East Coast Killers</center></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="15">
<tr bgcolor="#333333">
<td width="100%"><cetner><ul id="nav">
<li>Home
<ul>
<li><a href="main.html" target="Frame1">Home</a></li>
<li><a href="old.html">Old Website</a></li>
<li><a href="index.php">New Website</a></li>
</ul>
</li>
<li>Upload
<ul>
<li><a href="/cgi-bin/musicupload.php" target="Frame1">Music</a></li>
<li><a href="/cgi-bin/imageupload.php" target="Frame1">Pictures</a></li>
</ul>
</li>
<li>Forum
<ul>
<li><a href="http://eckclan.proboards19.com/index.cgi?board=general" target="Frame1">General</a></li>
<li><a href="http://eckclan.proboards19.com/index.cgi?board=Wars" target="Frame1">Matches</a></li>
<li><a href="http://eckclan.proboards19.com/index.cgi?board=challenge" target="Frame1" target="Frame1">Challenge</a></li>
<li><a href="http://eckclan.proboards19.com/index.cgi?board=site" target="Frame1">Website</a></li>
</ul>
</li>
<li>Music
<ul>
<li><A HREF="cgi-bin/addmusic6.php" onClick="return popup('cgi-bin/addmusic6', 'eckmusic')">Popup</A></li>
<li><a href="/cgi-bin/pickmusic.php" target="Frame1">Selector</a></li>
<li><a href="allmusic.php" target="Frame1">List</a></li>
</ul>
</li>
<li>Bios
<ul> <li><a href="/cgi-bin/loginform.php" target="Frame1">Log In</li>
<li><a href="/cgi-bin/pro.php?user=main" target="Frame1">Index</a></li>
<li><a href="/cgi-bin/biosend2.php" target="Frame1">Modify Bio</a></li>
<li><a href="members.html" target="Frame1">Members</a></li>
</ul>
</li>
<li>Contact
<ul>
<li><a href="/cgi-bin/contact.php?page=challangeform" target="Frame1">Challange</li>
<li><a href="/cgi-bin/contact.php?page=joinform" target="Frame1">Join</a></li>
<li><a href="/cgi-bin/contact.php?page=adminform" target="Frame1">Contact Webmaster</a></li>
</ul>
</li>
</ul>
</center></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="70">
<tr>
<td width="100%"></td>
</tr>
</table>
<iframe name="Frame1" src="main.html" WIDTH=100% HEIGHT=80% scrolling="yes" frameborder="0"></iframe>
<center>
<img src="http://eckclan.sytes.net/images/flag-ani.gif">
<br>Made in America by <a href="/cgi-bin/contact.php?page=adminform">Straterra</a>
<br>
Server information : Apache/1.3.29 (Win32) PHP/4.3.5RC1<br><b>2143</b> people have visited the site
<!--Counter written by Thomas York - http://eckclan.sytes.net - straterra@hotmail.com -->