Hi,
It looks like the css is not being loaded. If I try access the css file I get this following:
| Code: |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>500 Internal Server Error</title>
</head><body>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error or
misconfiguration and was unable to complete
your request.</p>
<p>Please contact the server administrator,
postmaster and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.</p>
<p>More information about this error may be available
in the server error log.</p>
</body></html>
|
This may have something to do with the gzip compression, or the way we are calling the css via a php instead of calling each css file individually, we call one file "template.css.php" which calls the others into the file. Your server configuration may not like this.
Please try the following, open the template.css.php file and look for
| Code: |
ob_start ("ob_gzhandler");
header ("content-type: text/css; charset: UTF-8");
header ("cache-control: must-revalidate");
$offset = 60 * 60;
$expire = "expires: " . gmdate ("D, d M Y H:i:s", time() + $offset) . " GMT";
header ($expire);
|
Delete this, then save the file and try again...
If this still does not work, then you can try adding a link for each css file in the index.php of the template. You can also speak to your host to see why this error is occuring, maybe its a setting they can adjust..
I hope this helps