Hey, I just have a quick question whose solution will hopefully make my site look a bit better and save me a bit of bandwidth.
Anyway, my problem is...
I have a multi-page website, and each section obviously has it's own index page (for instance: /pictures/index.html and /media/index.html).
Now, I want to use the same stylesheet in the root directory for every page. However, if I just try to use the same outline for each directory's index.html page it shows that the css it's calling on does not exist in that directory, so it doesn't find it. The pertinent html is:
To temporarily alleviate the problem, I've copied the "images" folder and stylesheet from the root directory and into each individual directory. However, this causes all the images to reload each time you navigate to a different section of the site (unless, of course, they're cached).
I'm sure there has to be a way to just call on the stylesheet and images in the root directory so I save some bandwidth and it doesn't look silly when the content is loaded but waiting for the header to reload on each page.
Thanks in advance for any help.
My site URL is www.brandnewstreet.com in case looking there will help clarify what I'm talking about.
Anyway, my problem is...
I have a multi-page website, and each section obviously has it's own index page (for instance: /pictures/index.html and /media/index.html).
Now, I want to use the same stylesheet in the root directory for every page. However, if I just try to use the same outline for each directory's index.html page it shows that the css it's calling on does not exist in that directory, so it doesn't find it. The pertinent html is:
HTML:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="style.css" rel="stylesheet" type="text/css" />
<title>Brand New Street</title>
</head>
<body>
<div id="container">
<div id="header">
To temporarily alleviate the problem, I've copied the "images" folder and stylesheet from the root directory and into each individual directory. However, this causes all the images to reload each time you navigate to a different section of the site (unless, of course, they're cached).
I'm sure there has to be a way to just call on the stylesheet and images in the root directory so I save some bandwidth and it doesn't look silly when the content is loaded but waiting for the header to reload on each page.
Thanks in advance for any help.
My site URL is www.brandnewstreet.com in case looking there will help clarify what I'm talking about.