Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


If you have a large number of Profiles you may not be able to see them all as the Profile panel is not configured to automatically scroll. It is, however, very simple to add a vertical scroll bar.

Step-by-step guide

  • Open your iShareGIS.aspx page (you may have called this something different) in a Text Editor such as Notepad++ (this should reside in your D:\Astun\iShareGIS\n.n\WebApps\Web folder)

  • Scroll down until you find the following section:

    Paste code macro
    ...
    }
    .ishare-map-branding h1 a:hover {
    	text-decoration: blink;
    }


               

  • Add the following information after the } and before the </style>

    Paste code macro
    #profileswitcher {
    
    	max-height: 80%;
    	overflow-y: auto;
    	overflow-x: none;
    	top: 38px !important;
    }


    e.g.

...