I had this same problem…what I found was that in the footer.php file, the closing </div>’s were in the wrong place:
<?php wp_footer(); ?>
</div>
</div>
<div id=”footer_talia”>
footer content
</div>
I simply changed this to:
<?php wp_footer(); ?>
<div id=”footer_talia”>
footer content
</div>
</div>
</div>
This solved the problem for me. cheers…matt