Is there a way to attach a css style to the dojo debug messages? In my case they always appeared behind some div, so i couldnt see them. How can i specify where they appear?
In djConfig, you can specify which element they are appended to by providing an id of that element: i.e.:
var djConfig={
isDebug:true,
debugContainerId:"dojoDebug"
};
for <div id="dojoDebug"></div>