Forum Replies Created

Viewing 1 replies (of 1 total)
  • mbredel

    (@mbredel)

    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

Viewing 1 replies (of 1 total)