|
Hi,
I am using the Template-Toolkit with mod_perl. I have too problems , the only way I can get CSS working is via an
<style>
[% INSERT css/ipstuff.css %]
</style>
inside the head, I am looking for a better way since the style comes down with the source (i.e in a view source on the browser).
Secondly, I am unable to view CSS background images as in :
#header h1 {
font-size:225%;
background: transparent url('/strategy/images/mockup.jpg') no-repeat fixed center;
}
in the apache error.log , I get the following message:
[Thu Jul 09 17:49:03 2009] [debug] mod_deflate.c(619): [client 127.0.0.1] Zlib: Compressed 5082 to 2183 : URL /strategy/images/mockup.jpg, referer: http://127.0.0.1:8080/strategy/
However I am not able to see the image defined in my CSS (as above), any ideas ?
|