Adding Corporate Branding

A logo or trademark can be added to the SIS WebMap interface to better reflect your corporate branding.

  1. Save your image in the Cadcorp SIS WebMap img folder (usually found in C:\inetpub\wwwroot\SISWebMap9.0.) Images can be in any file format supported by web browsers e.g GIF, JPEG or PNG).
  1. Open map.aspx (located in the SISWebMap9 folder) and find this section:
  <div id="branding" class="branding">
  </div>

and modify the tag to point to the stored image like this:

  <div id="branding" class="branding">
  <img src="img/FILENAME.jpg" />
  </div>

Finally open user.css (usually in C:\inetpub\wwwroot\SISWebMap9.0\css) and navigate to the branding section at the end of the file;

/* branding */
.branding
{
    display:block;
    position: absolute;
    right: 0px;
    /* modify the height and width depending on the contents of the branding div*/
    width:530px;
    height:120px;
    /*vertically centre*/
    top: 50%;
    /* set this value to height / 2 */
    margin-top:-150px;
}
/* end branding */

To enable the image, change display:none; to display:block; and alter the size of the container to match your image.

There is no limit to the size of branding image.

Branding position

To alter the position at which the brand logo is displayed simply edit the top:50%; value. It can be set to either top or bottom and the following percentage dictates the distance from the top or bottom that the logo will appear.