Alright, more information.
It seems to be complaining about the line
<script type="text/javascript" src="js/menu.js"></script>
If I take out that single line I can save the template.
This is a hack for ie to work properly with hover. It's lifted from them same source as the menus on the site, I don't remember where at the moment.
I can't even comment it out (<!-- -->) without Etomite barfing.
There doesn't appear to be anything odd, or changed, about the directory or the file.
FWIW the file just contains
sfHover = function() { var sfEls = document.getElementById("nav").getElementsByTagName("LI"); for (var i=0; i<sfEls.length; i++) { sfEls[i].onmouseover=function() { this.className+=" sfhover"; } sfEls[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); } }}if (window.attachEvent) window.attachEvent("onload", sfHover);
Permissions are set to 644 for the file, 755 for the js directory (no change if I set this to 777).
Weird?
Edited by Mark Stanton, 22 April 2007 - 09:08 AM.