OK, I found the culprit with the additional <html>, <head> & <body> lines. Following the instructions to install the Simple Rotating Splash Banner By Mika_p, he put in his readme file to drop the following code into the splash editor:
<html>
<head>
<style type="text/css">
#fader {
position: relative;
width: 100%;
height: 280px;
}
#fader img
{
width: 1087px;
height: 240px;
margin:20px;
}
.button#next:hover,
.button#prev:hover{
background-color: #EBECE4;
}
.button#next,
.button#prev {
background-color: #F8F8FF;
color:#000;
width: 50px;
height: 30px;
font-size: 20px;
line-height: 30px;
text-align: center;
position: absolute;
top: 130px;
}
#next {
right: 20px;
}
#prev {
left: 20px;
}
</style>
</head>
<body>
<div id="fader">
<img src="images\banner1.jpg"/>
<img src="images\banner2.png"/>
<img src="images\banner3.jpg"/>
</div>
<div class="button" id="next"><</div>
<div class="button" id="prev">></div>
<script language="Javascript" type="text/javascript">
$(function() {
$('#fader img:not(:first)').hide();
$('#fader img').each(function() {
var img = $(this);
});
var pause = false;
function fadeNext() {
$('#fader img').first().fadeOut("slow").appendTo($('#fader'));
$('#fader img').last().hide();
$('#fader img').first().fadeIn("slow");
}
function fadePrev() {
$('#fader img').first().fadeOut("slow");
$('#fader img').first().hide();
$('#fader img').last().prependTo($('#fader')).fadeIn("slow");
}
$('#fader, #next').click(function() {
fadeNext();
});
$('#prev').click(function() {
fadePrev();
});
$('#fader, .button').hover(function() {
pause = true;
},function() {
pause = false;
});
function doRotate() {
if(!pause) {
fadeNext();
}
}
var rotate = setInterval(doRotate, 5000);
});
</script>
</body>
</html>
I have subsequently removed both header and footer <html>, <head> & <body> codes, cleared the cache but unfortunately it doesn't seem to have worked. As for the _sub_header.html and _header.html files, this haven't been changed from the original Boonex installation.
Any other ideas?
Thanks,
Mark