I have a website in which I'm trying to automatically include a header and navigation panel section using require(). This works fine in IE 6.0 and Opera, however when I test it in Netscape 7.0, the CSS for the sections included with require() are not grabbing their styles.
Here is some sample code, as you will see it's very PHP light.
<html>
<head>
<title>jennifer-armentrout.com</title>
<link rel="Stylesheet" type="text/css" href="style.css" />
<script src="scripts.js"></script>
</head>
<body onload="setActiveLink('resume')">
<?php
require("header.php");
?>
<table cellpadding="0" cellspacing="0">
<tr>
<td style="width: 200px">
<?php
require("navigation.php");
?>
</td>
<td style="width: 100%">
... remainder of html page -- no more PHP from here on.
CSS styles and classes are working for everything but the stuff included by require().
Any ideas? I've checked my stylesheets and cannot find anything wrong.