ohh ic, your including the right files , but you cant get the images. thats because you may have the right path for a certain directory.
in the include files (if they are being used across the site) put in absolute values for each image tag.
what i mean is:
'this is the include file' in dir 'www/include/'
<img src=../imgs/image1.jpg>
that would work for ever level 1 dir (or whatever) but if youre now at 'www/info/about/' the include will attach itself and then be looking for ../imgs/image1.jpg still, yet www/info/imgs/image1.jpg doesnt exist-> so they are blank
hope that makes sense. just use abs path like <img src=/imgs/image1.jpg>
edit: think of it like this -> the include file is just a shorter way to 'add' the code in the same file- so in theory, when you include a file it serves the same way it would as if you wrote the code again and again in each file