In the demo, you can see that my footer bar is not in the correct position. I am having trouble figuring out why the footer is not settling after the content div. Ideally, the footer should be right after the article. I tried searching for specific keywords on Google but couldn't find a solution.
Furthermore, I am unable to apply styles to the about page. I suspect that this issue is related to the first problem.
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" lang="en"/>
<title>Title</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="containerANA">
<div id="header">
<div class="headerAlt">
</div>
</div>
<div class="clear"></div>
<!--End of the header.php-->
<div id="content">
<div class="finders">
<div class="find"><a href="#" title="Find">Find</a></div>
<p>
<a href="#">Sample Link</a>
<a href="#">Another Link</a>
<a href="#">Sample Link</a>
<a href="#">Another Link</a>
<a href="#">Sample Link</a>
</p>
</div>
</div>
<div class="clear"></div>
<!--Beginning of the footer.php-->
<div id="footer">
<ul>
<li><a href="http://www.example.com/about" title="about us">about us</a></li>
<li><a href="http://www.example.com/terms" title="terms of use">terms of use</a></li>
<li><a href="http://www.example.com/contact" title="contact">contact</a></li>
</ul>
</div>
</div>
</body>
</html>
style.css:
// CSS styles as given in the original code