Can anyone help me on this one?
I have created a folder on the site map to contain 'News' items. Problem is when I create a new page from a template in that folder, the new page doesn't display my CSS or Includes.
The CSS and Includes sit in my main directory and all my main pages (that also sit in the main directory) are just linked as below:
CSS:
<link href="style.css" rel="stylesheet" type="text/css" />
PHP:
<?php include("menu-tabs.php"); ?>
When I change them on the template to "../style.css" or "../menu-tabs.php" it all works fine - as you'd expect.
How can I set up my main pages in the first place so that if a client decides to create a template from one of them they won't lose the path to the CSS or PHP Includes?
I'm still learning PHP so please forgive my ignorance!!
:-)