AMT Help Files

Company Logo

A Company Logo can be added to the Control Center and/or Application Center in three places. It can be added to the utmost left of the Title Bar, it can be added in the Menu Container above the menu or it can be added to the Menu Container just below the menu.

To add a Company Logo in one of these places, first add the Logo graphical file to the images folder of the Theme that is being used. E.g. ~\AmtTools\ControlCenterCore\wwwroot\themes\YourTheme\images. Possible graphical file types are: jpg, png, gif and bmp.

Then open the YourTheme.css file in the YourTheme folder in a text editor.
 

Left of the Title Bar

Search in the YourTheme.css file for the section:

div#logo_topleft {
 ...
}

In this section search for the display property and change it's value from none to block (i.e. display: block;).

Then search for the property background and change the url to reflect the filename of your company logo
(e.g. background: url("images\your_logo.png") no-repeat;

Now save the changed YourTheme.css file and reload the Control Center. The logo should show to the left of the Title bar.
 

Above the Menu

Search in the YourTheme.css file for the section:

div#logo_maintop {
 ...
}

In this section execute the same changes as described for the Title Bar. Then save the YourTheme.css file and the logo should show to the top of the menu after reloading the Control Center.

When wanted the size of the shown logo can be changed by altering the value of the height property in this section.
 

Below the Menu

Search in the YourTheme.css file for the section:

div#logo_mainbottom {
 ...
}

In this section execute the same changes as described for the Title Bar. Then save the YourTheme.css file and the logo should show just below the menu after reloading the Control Center.

When wanted the size of the shown logo can be changed by altering the value of the height property in this section.