Hi there.
Anyone know what the changes are to make to the .php files in the 1.5 template? I tried to change the jatemplatetools.php, modeling after the modifications for 1.0, but just got failure to load, telling me that those changes were the problems… lines 12 and 13.
<blockquote>class JA_Tools {
var $_params_cookie = null; //Params will store in cookie for user select. Default: store all params
var $_tpl = null;
var $template = ‘ja_fagus’;
//This default value could override by setting with function setScreenSizes() and setColorThemes()
var $_ja_screen_sizes = array (‘wide’);
var $_ja_color_themes = array (‘default’, ‘blue’, ‘green’);</blockquote>
changed to
<blockquote>class JA_Tools {
var $_params_cookie = null; //Params will store in cookie for user select. Default: store all params
var $_tpl = null;
var $template = ‘ja_fagus’;
//This default value could override by setting with function setScreenSizes() and setColorThemes()
var $_ja_screen_sizes = ‘wide’ (‘wide’);
var $_ja_color_themes = ‘green’ (‘default’, ‘blue’, ‘green’);</blockquote>
The width isn’t as important to me as the color. I really don’t like that orange as the default!
Thanks for the help!
Jenn