hi all. i just started using EE today. i have a lot to learn. i just want to link a stylesheet. here’s what i have:
Templates:
1. photos [index(i want to use a css here)]
2. stylesheets [style (this is the css) I created it as a stylesheet type]
In index, I have the following code:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />
<link rel=“stylesheet” type=“text/css” media=“all” href=”{stylesheet=stylesheets/style}” />
<title>title</title>
</head>
<body>
this is the photos page
</body>
</html>
in style i have the following code:
body{
background-color:#666666;
font-family:Verdana, Arial, Helvetica, sans-serif;
color:#00FF00;
}
The page loads, but does not apply the style. Ideas? This seems so simple yet I cannot accomplish my goal!!!
thanks so much!