Hi. I’m trying to figure out the best to make this scenario without using frames. I simply want the top of my page to be a menu, and the bottom to be the content. So, my first thought was to make a table of 2 rows and include like this http://duke3donline.com/test.php:
<html>
<head>
<link rel="stylesheet" href="http://duke3donline.com/duke.css" type="text/css">
<title>Poda's Duke3D Site</title>
</head>
<body bgcolor="#000000" topmargin="0" leftmargin="6">
<table align = center border="0">
<tr>
<td><?php include('http://duke3donline.com/header.php'); ?></td>
</tr>
<tr>
<td><?php include('http://duke3donline.com/forum'); ?></td>
</tr>
</table>
</body>
</html>
My header looks ok, but my forum is all jacked up. It’s like none of the links or styles are applied. Is there some other way I can accomplish this?