|
I have a problem coding paths.
My home page is index.html and is in my root directory. Also in my root directory are folders (ie. /contact; /links; /blog; /forums etc.). I have /components for scripts, stylesheets etc and /images in the root directory too. For my homepage my coding is as follows
....type="text/css" href="components/style.css">
For my subfolders I use the same template (index.html) but the previous code don't work to show my stylesheet in my subfolders. I have also tried the following codes both still don't seem to work:
....type="text/css" href="/components/style.css">
and
....type="text/css" href=".../components/style.css">
My site is being hosted on a linux platform
Thanks
|