Info about current tenant in page title

Our engineers often work on many systems in parallel and in some cases from different tenants. They open different browser windows using the inPrivate function so they can be logged to different tenants. The problem is that it is difficult to understand which window is of which server/tenant. It would be usefull to have a richer title in the windows containing the tenant name and/or the instance/server name.

You can do this with CSS Override under Administration > Settings > Whitelabel.

Here is an example that puts the tenant’s name after the logo. That said you could change it to be where ever you want.

#logo {
    text-align: center; 
}

#logo::after {
    content: "Tenant Name";
    display: block;
    margin-top: 5px; 
    font-size: 14px; 
    color: #000;
}

Here is what it looks like in my environment.
image
image

1 Like

Thank you , in this way I can manually insert the label. They requested to have the info in the sheet title. Can this be done?

image

I am not aware of a way to modify the title tag with CSS.