Feb-12-2009, 12:19 am
Ok, so I first came here to see if anyone else had the same css page problems I was and how to fix them. To my surprise, no one else posted about this that I saw.
Well, I fixed my problem (after trolling my files for hours) and it was pretty simple once I found it and I thought I would post it here in case anyone else has this issue.
My page was coming up just black with that icky green type of the un-css'd page. well the problem with my (very) new 1.5.9 install was that this file:
/templates/system/component/php
was going to the system css instead of my template so I edited it to look like this:
Well, I fixed my problem (after trolling my files for hours) and it was pretty simple once I found it and I thought I would post it here in case anyone else has this issue.
My page was coming up just black with that icky green type of the un-css'd page. well the problem with my (very) new 1.5.9 install was that this file:
/templates/system/component/php
was going to the system css instead of my template so I edited it to look like this:
Code:
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/*your template*/css/template_css.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/template_css.css" type="text/css" />
and presto!