Hi, I'm developing a new website and everything works fine in Safari, Opera, and IE, but in Firefox the text does not show up :(
I've tried it with the 1.1.1 release and the nightly build, but still no luck, here's the code
var shape = surface.createEllipse({ cx: 161, cy: 102, rx: 72, ry:33})
.setFill(gObjectColor)
;
dojo.connect(shape.rawNode, "onmouseover", function() {
shape.setFill(gMouseOverColor);
document.body.style.cursor='pointer';
});
dojo.connect(shape.rawNode, "onmouseout", function() {
shape.setFill(gObjectColor);
document.body.style.cursor='default';
});
/*
dojo.connect(shape.rawNode, "onclick", function() {
getContent('lfns') });
*/
dojo.connect(shape.rawNode, "onclick", function() {
getContent('lfns'); });
var aText = surface.createText({x: 161, y: 107, text:"LFNS", align:"middle"});
aText.setFont({family: "Verdana", size: node.fontSize + "px", weight: "bold"});
aText.setFill("#FFFFFF");
dojo.connect(aText.rawNode, "onmouseover", function() {
shape.setFill(gMouseOverColor);
document.body.style.cursor='pointer';
});
dojo.connect(aText.rawNode, "onmouseout", function() {
shape.setFill(gObjectColor);
});
dojo.connect(aText.rawNode, "onclick", function() {
getContent('lfns'); });
Any ideas?
Thanks
David

Problem found
It seems that as I was trying to get everything to center on the page I was putting the div I'm drawing to within a table. Every other browser is happy with this, but Firefox does not display the text if the DIV is within a table.
Without putting it in a table I can't get it to center on the screen.