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);