I created a simple site wide navigation menu, which includes links, text and image which I then saved as topmenu.html.
Using PHP include to reference the file:
<?php include("../include/topmenu.html");?>
This shows the text, links and image correctly.
<?php include("../../include/navigation.php");?>
This shows the text and links correctly, but the image is broken.
Is there a way to fix this?