My advice would be this:
- Put the offending text inside a div with a unique ID
- In your CSS add the "display:none" CSS property for that item
- At the end of your init routine, add some javascript code to reverse the CSS visibility:
theDiv = document.getElementById("<your Div ID here>"); theDiv.setAttribute("display","inline");
If you need to support an older version of IE, which code you use to set the CSS property might change. Note: Dojo also has a way to set the CSS properties of a DOM element.Steve