Ok. I’ve released another patched version of the Copperleaf Plus Theme. There was a javascript bug in the handling in the sidebar expanders with Konqueror and Safari. Check it out.
Basically, there is code that does something like
var img = new Image(9,9);
...
somediv.appendChild(img);
This resulted in an exception being thrown by Konqueror and Safari. The fix was to change it to
var img = document.createElement('img');
...
somediv.appendChild(img);

November 22nd, 2005 at 3:14 pm
Hi,
I love your template and I am using it at my site, http://www.homes-security.com with a few changes (the top graphic), and also making post titles H1 instead of whatever they were before.
Anyway, how do I make that change? What file is it located in?
November 22nd, 2005 at 3:17 pm
The changes are in the expander.js file, but the easiest thing to do is grab the zip file and replace your existing expander.js with the new one.
November 22nd, 2005 at 3:49 pm
Thanks for that.