I've got my OpenACS site up and running fairly well, thanks to the many contributors to this
board. I'm trying to get Cascading Style Sheets to work. At /webroot I've got two files,
test.htm:
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
test
</body>
</html>
and style.css in the same directory:
<style type="text/css">
body { 10%; background: red; }
</style>
When I load test.htm, the style sheet does *not* apply. Yet, if I point my browser directly to
style.css, I can view the file. What am I missing here? I'm neither an OpenACS nor CSS pro, so
I'm trying to reduce this problem to it's essential elements.