Hi there, Site was made by a previous designer and the client needed some updates. The header and nav were an image file before and I recreated them as include files with CSS. I have tried different variations to input the includes and it still not showing up live. Here is the code: <?php require_once('includes/header.html'); ?> <!-- main navigation --> <?php require_once('includes/navigation.html'); ?> <!-- end main navigation --> Thanks!
Try from these: <?php require_once('/includes/navigation.html'); ?> <?php require_once('../includes/navigation.html'); ?> <?php require_once('http://www.mysite.com/includes/navigation.html'); ?>