RE: WinXP IE render_text leak?

Can you make that into an external style instead of an inline style?
You’ve got mozilla-specific code in that inline style that is
most-likely throwing IE off…

#maptable #container{
position:absolute;top:0px;
left:0px;
width:100%;height:100%;opacity:.0;
cursor:hand;z-index:2000;
}

/* IE will skip these rules */
html>body #maptable #container{
filter:alpha(opacity=0);-moz-opacity:0.0;
}

That, and I think that inline styles are the tool of the devil :slight_smile:

Does that help at all?