Hi Bobby!
It looks like you're missing the main-copy <div> container for your extremes code.
In your wxextremes.php file, try adding <div id="main-copy"> right below the include("menubar.php"); like so:
<?php
############################################################################
include("header.php");
############################################################################
include("menubar.php");
############################################################################
?>
<div id="main-copy">
<!-- Weather Extremes Script Version 0.9.3 -->
And insert a </div>
right above the include footer statement like so:
</div><!-- end main-copy -->
<?php
############################################################################
include("footer.php");
############################################################################
# End of Page
############################################################################
?>
I think that might clear up your issue.
Cheers!