Skip to main content

Brand Management

Overview

Atria allows service providers, resellers, and customers to create their own brand so that the web portal interface (control panel) displays their own logo, color scheme, fonts, and messages when their users log on to the portal.

The main elements involved in branding that change the look and feel of the Atria interface are:

  • Brand Name, Label
  • Logo
  • Favicon
  • Login Text
  • Home Text
  • Modern UI Variables (color scheme)
  • Classic UI Variables (color scheme)
  • Custom CSS - further customizations to the brand

Brand Management

Creating a Brand

A customer will inherit all brands that have been saved in the higher hierarchy (by the Reseller / Service Provider). To create a new custom Brand:

  1. Go to the menu Customers > Configuration > Branding > Brands.
  2. Under Management > New Brand.
  3. Select if it is for a System Brand or a Customer Brand.
  4. Enter a Brand Name and Brand Code.
  5. Edit the brand created and customize it based on your requirements.
  6. Save the new brand.

Once the new brand has been created, it can then be applied:

Applying to an Individual Customer

  1. Edit the Advanced Customer Properties.
  2. Select the Brand.

Brand Management

Applying to a Portal URL

  1. Go to Customers > Branding > Brands.
  2. Click on URL Branding in the Related Pages Menu.

Brand Management

Details on the UI Variables

Modern UI Variables

Brand Management

Classic UI Variables

Brand Management

Setup Customers Folder for Branding Resources

  1. Navigate to the Web Server:
    C:\inetpub\Automate101\Atria\Atria\wwwroot
  2. From this folder, create a customers folder.
  3. Add image resources (e.g., img, icons, etc.) to this folder for branding.

Brand Management

Notes:

  • The customers folder will not be touched during an upgrade.
  • You may create subfolders within customers to separate branding resources for different customers.

Custom CSS (Sample Template)

Advanced branding changes can be done by adding Custom CSS to the brand. Below are examples of changes that can be made:

Customizing the Login Page

Brand Management

info

For the location of the image and logo, make sure to use /customers/(logo name) or if it's on another folder /customers/(custom folder)/(logo name)

Example CCS Code
/* LOGIN */
.login__background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
}

.login__logo {
background-image: url("/customers/<logo name>");
background-repeat: no-repeat;
background-size: contain;
position: absolute;
left: 50%;
margin-left: -120px;
top: 80px;
width: 250px;
height: 200px;
}

.login__header {
height: 300px;
background-color: transparent;
}

.login__formPanel {
position: absolute;
top: 200px;
min-height: 300px;
left: 50%;
margin-left: -250px;
width: 500px;
background-color: white;
padding: 15px;
}

.MuiFormLabel-root {
color: #01689b;
}

.MuiFormLabel-asterisk.Mui-error {
color: #01689b;
}

.MuiButton-containedPrimary {
background-color: #01689b;
}

.MuiButton-containedPrimary:hover {
background-color: #B5D3E7;
}
/* MAIN.Master */
.navbar-brand-img {
height: 86px !important;
width: 200px !important;
max-height: 86px !important;
border: none;
}

.new-ui .sidenav .navbar-brand {
padding: .5rem;
}

If you have any queries or issues, feel free to contact us at support@getatria.com.