Hi All,
Here is my Index code. How can I make footer be at the bottom of other div. In css I floated to left the leftbar and to right the main contents. The header is fine but footer comes just below main content instead of being at bottom of all divs. Please help me get it down
html>
<head>
<title>Test Page - Elijah Ministries</title>
<link rel="stylesheet" type="text/css" href="/projects/elijah/elijah.css" />
</head>
<body>
<!--carries the whole Website -->
<div id="main">
<!--Header -->
<div id="header">
<?php
$paths = getcwd();
include("$paths/include/inc.header.php");
?>
</div>
<!--Navigation bar -->
<div id="nav">
<?php
//$paths = getcwd();
//include("$paths/include/inc.header.php");
?>
</div>
<!--Left bar Links -->
<div id="leftbar">
<?php
include("$paths/include/inc.nav_links.php");
print ("<br />");
include("$paths/include/inc.mailing_list.php");
print ("<br />");
include("$paths/include/inc.elijah.php");
?>
</div>
<!--right bar main contents -->
<div id="mainarea">
Right bar
</div>
<!--Footer -->
<div id="footer">
<?php
include("$paths/include/inc.footer.php");
?>
</div>
</div>
</body>
<html>