The yellow footer block that appears towards the top of the page should flow to the bottom of the content as a footer normally would.
here is the CSS for #footer:
#footer {
background-color: #2F3B47;
padding: 20px;
height: 180px;
float: none;
clear: both;
}
I need the solution to work like a "sticky footer" so that it flows to the bottom of the content block regardless of the heighth of the content div. Thanks for any tips or help!