Hello Hannah,
thank you for your reply. I just fixed the problem by changing the base.php and putting the ‘footer’ out of the ‘wrapper’ div -> works perfect 🙂
ORIGINAL CODNIG:
</div><!– /.wrap –>
<?php do_action(‘get_footer’);
get_template_part(‘templates/footer’); ?>
</div><!–Wrapper–>
</body>
</html>
ADJUSTMENT:
</div><!– /.wrap –>
</div><!–Wrapper–>
<?php do_action(‘get_footer’);
get_template_part(‘templates/footer’); ?>
</body>
</html>
Best
Lukas