I'm having an odd error with one of my pages where the bar that should be on the footer is up in the left hand corner and the links area is supposed to be where the footer bar is. All my other pages are not affected it is just this one. Here is a link to the affected page http://alohavirtual.virtual-aviation.org/index.php/schedules/details/4 and here is one of what it is supposed to look like formatting wise http://alohavirtual.virtual-aviation.org/index.php/FrontSchedules also these two pages referance off the same stylesheet and layout.tpl file
Your #footer
div is inside your #container
div. Move it outside and below your #container
div and the page will look better.
Also, your #sidearea
div is inside your #mainarea
div. Move it outside and above the #mainarea div.
You have the <div id="footer">
inside of your <div id="container"> </div>
area on the affected page. Move it down outside of your container div and all will be well.
Happy coding.
See the below image in which i mention your HTML structure please follow this and it might help you to solve your issue.
<div id="footer"></div> code should be in <div id="wrapper"></div>instead of <div id="container"></div>
As mention in above image.