My question is a basic question about customization. I created a new theme based off the "default" theme (I just copied the "default" theme into a new folder). But when I customize the styles.css.php and rehash the chat, there are no visible changes.
What am I doing wrong?
My index.php file:
- Code: Select all
<?php
require_once "chat/src/phpfreechat.class.php"; // adjust to your own path
$params["serverid"] = md5(__FILE__); // used to identify the chat
$params["theme"] = "boomers";
$params["startwithsound"] = false;
$params["refresh_delay"] = 2000;
$params["max_msg"] = 0;
$params["isadmin"] = true;
$chat = new phpFreeChat($params);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel=stylesheet href="chat/themes/boomers/style.css" type="text/css">
<title>phpFreeChat demo</title>
<?php $chat->printJavascript(); ?>
<?php $chat->printStyle(); ?>
</head>
<body>
<?php $chat->printChat(); ?>
</body>
</html>
Any help would be greatly appreciated

<3