Ispmanager 6 business documentation

Brand settings

 

The Branding settings module allows you to quickly re-brand your control panel: add your own corporate logo and title, change the color scheme, and link to your website.

General settings

  • Reset brand settings — select the checkbox to reset the changes you made to the interface.

Interface color

Note:
In the current version in the dragon theme, the interface color setting is not available.
  • Interface view — here you can review changes of the interface's color.
  • Hue — enter a value or drag the slider until you have the logo's color you want.
  • Saturation — adjust the saturation level.
  • Brightness — drag the brightness slider until you have the color you prefer.
  • Window heading — this information will be used as window heading.
  • Logo URL — locate your main corporate logo that will be displayed in the upper left corner of the panel interface. The image should be no more than 190х88 pixels in height. The PNG image format is supported.
  • Logo in the authorization form — locate a logo that will be used in the authorization form. The image should be no more than 101х38 pixels in height. The PNG image format is supported.
  • Address bar icon — select an icon for the address bar. The image should be no more than 16х16 pixels in height. The .ico image format is supported.
  • Copyright notice — you may enter the copyright sign, copyright holder and company working years.
  • Homepage — enter the URL of the company's homepage. You can use the $lang macro, which will be changed into a language code.
  • Contacts — enter the URL to your company's contacts page. The link will be shown in the Login form. You can use the $lang macro, which will be changed into a language code.
  • Privacy — add a link to your company's confidentiality provisions. The link will be shown on the Login form. You can use the $lang macro, which will be changed into a language code.
  • Terms of use — add a link to your product's Terms and conditions. The link will be shown on the Login form. You can use the $lang macro, which will be changed into a language code.

HTML

  • Heading — enter a code that will be added into the page heading (HEAD).
  • Body — enter a code that will be added at the end of the page body (BODY).

Examples of code for headings

This code changes the font settings for menu items: sets the font size to 12 pixels and applies the italicized Helvetica font.

Changing menu items

<style>
li {
    font-size:12px;
    font-family:helvetica,cursive;
    font-style:italic;
}
</style>

This code changes the font settings for tables: sets the font size to 11 pixels.

Changing the font in tables

<style>
.table__data {
              font-size:11px;
}
</style>