Hide Sign In on Maps and Apps Gallery

2432
2
Jump to solution
06-30-2015 07:21 AM
Labels (1)
CharmaleeSandanayake1
New Contributor III

I have downloaded and installed the Maps and Apps Gallery on my own web server. http://solutions.arcgis.com/local-government/help/maps-and-apps-gallery/

Is there anywhere in the configuration where I can hide the Sign In  button on a mobile phone?

I have successfully hidden it in theme.css as so starting in line 199 and this works on the desktop browser:

esriCTSignIn

{

  

    display: none;

}

in mediaQueries css I tried to do something similar, but it doesn't seem to work without changing too much of the formatting.

Is there an easier way to disable the sign in than using the css?

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
StanMcShinsky
Occasional Contributor III

Charmalee,

You can create your own css file that the app will reference or modify the theme.css and make the changes. Just add this:

@media screen and (max-width: 320px)
.esriCTSignIn {
  float: left;
  padding: 0 0px;
  position: absolute !important;
  right: 0px;
  top: 0px;
  display: none !important; /* added this */
  }

-Stan

View solution in original post

2 Replies
StanMcShinsky
Occasional Contributor III

Charmalee,

You can create your own css file that the app will reference or modify the theme.css and make the changes. Just add this:

@media screen and (max-width: 320px)
.esriCTSignIn {
  float: left;
  padding: 0 0px;
  position: absolute !important;
  right: 0px;
  top: 0px;
  display: none !important; /* added this */
  }

-Stan

CharmaleeSandanayake1
New Contributor III

Thanks Stan! That worked perfectly!

0 Kudos