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 far 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 image file to the images folder of the theme that is being used, for example, ~\AmtTools\ControlCenterCore\wwwroot\themes\YourTheme\images. Supported image 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 its value from none to block (for example, display: block;).

Then search for the background property and change the URL to reflect the file name of your company logo (for example, 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, apply 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.

If needed, the displayed logo size can be changed by modifying 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, apply 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.

If needed, the displayed logo size can be changed by modifying the value of the height property in this section.

Contents