Something tells me your on a windows server. And your code is getting garbed for some reason on upload.
The thing I don't understand is, If you say your code doesn't contain the spaces on your local machine. How did you upload your splash page? That code doesn't contain the weird word spacing in the code.
However you wrote the code and uploaded the splash page, do the same for your main page.
I also downloaded your code, slapped it in notepad and replaced the spaces and found this ÿþ right before your Document Type.  
Code:
ÿþ<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<html>
<head>
<title>menu page</title>
<meta http-equiv="Page-Enter" content="blendtrans(duration=0.7)">
<style type="text/css">
a:link {color: #616161}
a:visited {color: #000000}
a:hover {background: #999999}
a:active {color: #000000}
</style>
<script>
var slideShowSpeed = 4000
var crossFadeDuration = 3
var Pic = new Array()
Pic[0] = 'SYR-ALL.jpg'
Pic[1] = 'pic.01.jpg'
Pic[2] = 'pic.02.jpg'
Pic[3] = 'pic.03.jpg'
Pic[4] = 'pic.04.jpg'
Pic[4] = 'pic.05.jpg'
Pic[4] = 'pic.06.jpg'
var t
var j = 0
var p = Pic.length
var preLoad = new Array()
for (i = 0; i < p; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic[i]
}
function runSlideShow(){
if (document.all){
document.images.SlideShow.style.filter="blendTrans(duration=2)"
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
document.images.SlideShow.filters.blendTrans.Apply()
}
document.images.SlideShow.src = preLoad[j].src
if (document.all){
document.images.SlideShow.filters.blendTrans.Play()
}
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('runSlideShow()', slideShowSpeed)
}
</script>
</head>
<body bgcolor="ffffff">
<body onload="runSlideShow()">
<br><br>
<table align="center" width="70%" height="50%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<font face="Arial" color="616161" size="1"><b>SCHOOLYARDRULES!</b><br>
<font face="Arial" color="616161" size="1"><b>THE NIGHTMARE EDITION</b><br><br>
<font face="Arial" color="616161" size="1">-----------------------------------------------------------------------------<br><br>
<a href="characters.htm" style="text-decoration: none"><font face="Arial" color="616161" size="1"><b>SCHOOLYARDRULES! MAIN CHARACTERS</a><br><br>
<font face="Arial" color="616161" size="1">-----------------------------------------------------------------------------<br><br>
<a href="mani.html" style="text-decoration: none"><font face="Arial" color="616161" size="1"><b>SCHOOLYARDRULES! MANIFESTO</a><br><br>
<font face="Arial" color="616161" size="1">-----------------------------------------------------------------------------<br><br>
<a href="nopsis.htm" style="text-decoration: none"><font face="Arial" color="616161" size="1">SYNOPSIS</a><br><br>
<a href="acts.htm" style="text-decoration: none"><font face="Arial" color="616161" size="1"><b>>>READ THIS ISSUE<<</b></a><br><br>
<a href="original.htm" style="text-decoration: none"><font face="Arial" color="616161" size="1">STORYBOARDING & ORIGINAL ARTWORK</a><br><br>
<a href="syr-rebellion.html" style="text-decoration: none"><font face="Arial" color="616161" size="1"><b>*THE REBELLION ISSUE*</a><br><br>
<a href="comments.htm" style="text-decoration: none"><font face="Arial" color="616161" size="1">READER COMMENTS</a><br><br>
<font face="Arial" color="616161" size="1">-----------------------------------------------------------------------------<br><br>
<a href="contact.htm" style="text-decoration: none"><font face="Arial" color="616161" size="1">CONTACT</a><br><br>
<a href="copyright.htm" style="text-decoration: none"><font face="Arial" color="616161" size="1">COPYRIGHT NOTICE</a><br><br>
<font face="Arial" color="616161" size="1">-----------------------------------------------------------------------------
</td>
<td align="right" id="VU" height=50 width=77><img src="SYR-ALL.jpg" name='SlideShow' width=413 height=511></td>
</tr>
</table>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-1451805-1";
urchinTracker();
</script>
</body>
</html>
I also found another page with the same issue http://books.nap.edu/openbook.php?re...=11753&page=R1
Notice ÿþ
This is an encoding issue. xml data? Are you importing xml?
A quick Google search and whala! Check it out.
http://www.geocities.com/pmpg98_pt/C...rEncoding.html
ÿþ represents UTF-16LE
Visual basic?
I don't think your telling us everything here for some reason.
<font face="Arial" color="616161" <-------- This is indicative of either Microsoft Word or Front page.
If this is a template you downloaded and are trying to use. scratch it and start over.
If you can't fix the issue with notepad. and a fresh upload using smartftp, your server is either a windows server wrongly interpreting your code or, your imputing VB or xml data the is encoded wrong and conflicting with your page.
Just an un-educated guess. Call me crazy.
__________________
.
Village Idiot
Last edited by Sydpix; 03-19-2007 at 08:18 AM..
|