Maximo Application Suite
Customer-managed

Example: Changing the login page

Note: If you are using a Maximo® Application Suite as a Service environment that is based on Maximo Application Suite 9.0, this feature is not available.

In Maximo Application Suite 9.0, a system administrator wants to change the appearance of the login page to include their company image and replace the title heading on the login page to their company name.

Procedure

  1. On navigation menu, in the suite administration page, select Configurations > User interface customization.
  2. Select the Header configuration tab and enter your company name and product name in the corresponding fields.
  3. Select the CSS customization tab and set Enable CSS customization to on.
  4. To add an image to the login page, enter the following CSS update to add the image as the background image.
    .login-background-image {
        background-image: url("image_url")
    }
    where image_url is the URL of the image that you want to use.
    For example, after you save your changes, the login page shows the new image and the name of your company.

    Shows the new image and the name of your company on the login page.

  5. If you want to change the title text on the login page, enter the following CSS update
    p#x7ynq::after { visibility: visible; content: "Hello World"; position: absolute; left: 0; top: 0; } p#x7ynq { visibility: hidden; position: relative; }
    where Hello World is the text that you are updating to.
    For example, after you save your changes, the login page shows the updated text.

    Shows the updated title of the login page.