This issue occurs in IE6/7 when the HTML within your FCS are improperly nested (see here for more info). Basically looking at your HTML, there contains a lot of invalid and invalid nested tags:
Code:
<!--Inner content DIVs should always carry "contentdiv" CSS class-->
<!--Pagination DIV should always carry "paginate-SLIDERID" CSS class-->
<div id="slider1" class="sliderwrapper">
<div class="contentdiv">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Important Announcement For Middl</title>
</head>
<body>
<table border="0" width="525" height="250" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" background="http://images.mckenziefootball.com/news/2009/passingleague1.jpg">
<table border="0" width="100%">
<tr>
<td height="150" valign="top">
</td>
</tr>
<tr>
<td height="83" background="http://images.mckenziefootball.com/transparentbg.png" valign="top">
<font color="#FFFFFF">
<b><font face="Arial" size="4">2009 Passing League:</font><font size="2" face="Arial"><br>
</font>
</b></font><font size="2" face="Arial"><font color="#FFFFFF">McKenzie
took on Camden and Martin-Westview in a passing league event at the high
school Thursday afternoon. A few photos have been uploaded to our
dotPhoto gallery, </font>
<a href="http://mckenziefootball.dotphoto.com/CPViewAlbum.asp?AID=5904633">
<font color="#FFFFFF">click here to view them</font></a><font color="#FFFFFF">.</font></font></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<br>
</div>
<div class="contentdiv">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Important Announcement For Middl</title>
</head>
<body>
<table border="0" width="525" height="250" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" background="http://images.mckenziefootball.com/news/2009/springliftathonvideo.jpg">
<table border="0" width="100%">
<tr>
<td height="150" valign="top">
</td>
</tr>
<tr>
<td height="83" background="http://images.mckenziefootball.com/transparentbg.png" valign="top">
<b><font face="Arial" size="4" color="#FFFFFF">2009 Spring Lift-A-Thon
Highlight Video:</font><font size="2" color="#ffffff" face="Arial"><br>
</font>
</b><font size="2" color="#ffffff" face="Arial">The Rebel football team
completed their Spring Lift-A-Thon fundraiser a couple weeks ago and
we've uploaded a nearly 8 minute highlight video of the event that took
place over several days. You can check it out on our YouTube page (mckenziefootball),
<a href="http://www.youtube.com/watch?v=meTnJC88drM">
<font color="#FFFFFF">here.</font></a></font></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
</div>
<div class="contentdiv">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Important Announcement For Middl</title>
</head>
<body>
<table border="0" width="525" height="250" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" background="http://images.mckenziefootball.com/news/2009/springliftathon.jpg">
<table border="0" width="100%">
<tr>
<td height="150" valign="top">
</td>
</tr>
<tr>
<td height="83" background="http://images.mckenziefootball.com/transparentbg.png" valign="top">
<b><font face="Arial" size="4" color="#FFFFFF">Lift-A-Thon:</font><font size="2" color="#ffffff" face="Arial"><br>
</font>
</b><font size="2" color="#ffffff" face="Arial">T</font><font face="Arial" size="2" color="#FFFFFF">he
McKenzie Rebels have begun the annual Lift-A-Thon contest in which the
football players lift weights to raise money for the football program.
Results of the Lift-A-Thon can be found in the 'Weightlifting Stats' on
the left. Video highlights coming soon.</font></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
</div>
<div class="contentdiv">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Important Announcement For Middl</title>
</head>
<body>
<table border="0" width="525" height="250" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" background="http://images.mckenziefootball.com/news/newgallery.jpg">
<table border="0" width="100%">
<tr>
<td height="150" valign="top">
</td>
</tr>
<tr>
<td height="83" background="http://images.mckenziefootball.com/transparentbg.png" valign="top">
<b><font face="Arial" size="4" color="#FFFFFF">Brand New Photo Gallery:</font><font size="2" color="#ffffff" face="Arial"><br>
</font>
</b><font size="2" color="#ffffff" face="Arial">There's a new photo
gallery now, hosted by dotPhoto. This new gallery will allow me to
upload many more pictures than previously, and it also allows for you to
purchase these photos, and download the full high quality version right
off the internet, all at your convenience. View:
<a href="http://mckenziefootball.com/?id=other/photos">
<font color="#FFFFFF">Photo Purchasing Policy</font></a> |
<a href="http://mckenziefootball.dotphoto.com/CPListAlbums.asp">
<font color="#FFFFFF">Visit The New Photo Gallery</font></a></font></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
</div>
</div>
<div id="paginate-slider1" class="pagination">
</div>
You have <html> and <head> tags where they do not belong, plus most likely tags that aren't closed plus improperly nested.
To confirm the above is in fact the issue, try reverting the HTML for the FCS back to the default when you cut and pasted the code. If the issue disappears, then you know the solution is to clean up the HTML inside your FCS.
Bookmarks