I have the page and the main page doesn't get to bottom. In short it doesn't fit up. Take the code and see what I mean. If you don't know PHP just replace it with <p> Garbage words</p>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" dir="ltr" lang="en-US">
<head>
<title>Test Page - Elijah Ministries</title>
<link rel="stylesheet" type="text/css" href="/projects/elijah/elijah.css" />
</head>
<body>
<?php
$paths = getcwd(); // get the current working DIR path
?>
<!-- Main carrier to the web page -->
<div>
<!-- Header -->
<div id="header">
<br />
<?php
include("$paths/include/inc.header.php"); // include the header code
?>
</div>
<!--Navigation Bar -->
<div id="header_menu">
<!-- Table for Menu -->
<table style="text-align: left; width: 100%;" border="2" cellpadding="2" cellspacing="0">
<tr>
<!-- Left Top Menu -->
<td>
<?php
include("$paths/include/inc.top_menu.php"); // include the header menu code
?>
</td>
<!-- Middle Top Menu -->
<td>
<?php
include("$paths/include/inc.top_menu2.php"); // include the header menu code
?>
</td>
<!-- Right Top Menu -->
<td>
<?php
include("$paths/include/inc.top_menu3.php"); // include the header menu code
?>
</td>
</tr>
</table>
</div>
<!--Left Link Bar -->
<div id="leftbar">
<?php
include("$paths/include/inc.side_bar.php"); // include the Left sidebar menu code
?>
</div>
<!--Right bar -->
<div id="mainarea">
<?php
include("$paths/include/inc.main.php"); // include the header menu code
?>
</div>
<!-- Footer -->
<div id="footer">
<?php
include("$paths/include/inc.footer.php"); // include the header menu code
?>
</div>
</div>
</body>
<html>