Select to view content in your preferred language

Repositioning Identity Manager

1930
2
Jump to solution
03-29-2016 10:15 AM
ArjunDongre
Regular Contributor

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!

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Arjun,

  The simple way is to use css:

.esriSignInDialog {
  top: 20px !important;
  left: 20px !important;
}

View solution in original post

0 Kudos
2 Replies
RobertScheitlin__GISP
MVP Emeritus

Arjun,

  The simple way is to use css:

.esriSignInDialog {
  top: 20px !important;
  left: 20px !important;
}
0 Kudos
ArjunDongre
Regular Contributor

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.

0 Kudos