Custom Styles#

In the deploy directory, you can customize customStyles.css.

:root {
--title-color: #424242 !important;
}

[data-theme="dark"] {
--title-color: #fafafa !important;
}

#service-desk-title {
color: var(--title-color);
}

Message of the Day#

You can customize the Message of Today on the Login Screen. To do this, you need to access the following menus in Allegra:

  1. Administration

  2. Server Administration

  3. Login page texts

  4. Application Type = Service Desk

Hint

Additionally, you can add a background image to the message. Simply place a corresponding image in the in the images directory with the name motdBackground.jpg.

Customizing Login Screen Title#

You can change the title of the application for the tabs and the application, edit the config.php file for this purpose. Deploy directory.

// The title of the App
$title = 'Allegra Service Desk'; <------ Here
// Welcome title of the App
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
$acceptLang = ['fr', 'en', 'de'];
$lang = in_array($lang, $acceptLang) ? $lang : 'en';
$titleOptions = [
  "en" => "",
  "de" => "My Title", <------ Here
  "fr" => "",
];
$welcomeTitle = $titleOptions[$lang];

Danger

It is very important to be careful when doing this, make sure, that you do not change any structure in this file.