Basically every page on the site boils down to:
Code: Select all
<?php include('includes/top.html'); ?>
Here goes the content of the page.
<?php include('includes/bottom.html'); ?>In top.html, all the normal stuff you'd see in a header is there - including two links to CSS files:
Code: Select all
<link type="text/css" rel="stylesheet" href="css/maincss.css" />
<!--[if IE]><link type="text/css" rel="stylesheet" href="css/ie.css" /><![endIf]-->The issue is that the if statement isn't working. I googled around and the only suggestion I could find was that Javascript wasn't parsing correctly within the include, but the strange thing is that I've got a whole lot more java than that just a few lines down, for rollover images, and it all parses perfectly.
Thanks in advance for any help.