I am trying to reposition the identity manager dialog to the top of the page, but am having trouble. Specifically I am not able to to accessing the dialog dijit via its id, or through the dom node. Any tips would be helpful! Thanks!
Solved! Go to Solution.
Arjun,
The simple way is to use css:
.esriSignInDialog { top: 20px !important; left: 20px !important; }
Arjun,
The simple way is to use css:
.esriSignInDialog { top: 20px !important; left: 20px !important; }
Great thanks. I tried CSS as well, by inspecting elements in my browsers but still wasn’t able to grab the node. I didn’t know about the !important tag, that did the trick. Thanks! I think you helped me at some other point as well…much appreciated.