I've run into a very strange problem. I have some custom page templates which display posts from only specific categories and one of these page templates puts the closing container div BELOW the footer.
So, instead of:
<div id="container">
<div id="content">
Whatever the content happens to be...
</div><!-- #content -->
</div><!-- #container -->
<div id="footer">
</div><!-- #footer -->
This one rogue page template is outputting:
<div id="container">
<div id="content">
Whatever the content happens to be...
</div><!-- #content -->
<div id="footer">
</div><!-- #footer -->
</div><!-- #container -->
The page templates are identical except one is for category 103 and the other is for category 107. And I've checked for any random closing div tags in the posts.
Has anyone run into this before? It's really messing up my design on that page!
Thanks in advance for any help!