Quote:
|
Originally Posted by rudi_in 1.) Now that you have made the templates, (external perhaps) -- have you included a link to your CSS in your source code? |
This sounds like what it is to me as well. For every page you want your CSS to affect, you need to import the CSS stylesheet. There are two ways of doing this. The simpliest way is by putting the following code between your <head> tags on a page:
Code:
<link rel="stylesheet" href="style.css" type="text/css" media="screen"/>
The above code assumed that your web page and the CSS file (called style.css) are both in the same folder.