If you are using an on-premises deployment of Domino, you can use white labeling to customize the Domino interface with your organization’s brand, external resource links, banner, footer, and more. You can also remove specific UI elements to hide functionality according to your organization’s needs.
White labeling is controlled by certain Configuration keys. See Configuration records for definitions of these keys.
Create a custom HTML banner for every page on Domino to notify users of important announcements and information.
-
In the admin portal, go to Platform settings > Configuration records.
-
Set
com.cerebro.domino.frontend.globalBanner.content
to the HTML that you want shown in the banner.-
Example:
<div style="background-color: blue; font-size: 50px;">Global Banner</div>
-
-
Set
com.cerebro.domino.frontend.globalBanner.isClosable
to let users close the banner. -
Set
com.cerebro.domino.frontend.globalBanner.reappearTimeAfterCloseInSec
to specify how many seconds pass before the banner reappears. If the key is not specified, the banner will stay closed.
-
In the admin portal, go to Platform settings > Configuration records.
-
Set
com.cerebro.domino.frontend.footerCustomization.customFooterHtml
to the custom HTML that you want shown just above the page footer.
-
In the admin portal, go to Platform settings > Configuration records.
-
Set
com.cerebro.domino.frontend.footerCustomization.customFooterImageUrl
to a URL for the image that you want shown in the footer. The image displays on the same line as the Domino logo. IfcustomFooterHTML
is set, this displays below the custom HTML, inside the footer.
-
In the admin portal, go to Platform settings > Configuration records.
-
Set
com.cerebro.domino.frontend.footerCustomization.customContactUsHref
to a URL that directs your users to a web-based form or email address (mailto:support@domain.com
).
The com.cerebro.domino.whitelabel.jsonConfig
Configuration key supports additional white labeling parameters in JSON format:
Key | Description |
---|---|
Design elements | |
| Optional: The absolute URL of the logo image, or |
| Optional: The background color of the logo; the default is "transparent". Any CSS color value is valid. |
| Optional: The application URL; the default is "https://domino.ai/". |
| The application name (such as Domino). |
| The default project name. |
| The absolute URL of the favicon image. |
| A description to show in the Git credentials configuration window. |
| The URL of the help content. |
|
|
|
|
|
|
|
|
|
|
| The custom HTML that you want showing just above the page footer. |
|
|
Git security | |
| A description to show in the Git credentials configuration window. |
|
|
Project visibility | |
|
|
|
|
|
|
|
|
|
|
| The contact email to be used in error pages. |
| The application name (such as Domino). |
| The custom HTML shown just above the page footer. |
|
|
| The support email address. |
| The support page URL. |
| The PDF template URL. |
| The title for the PDF template. |
{
"appLogo": "https://example.datascience.org/sku_setup/logo/for-light-backgrounds/example_logo_blue.png",
"appLogoBgColor": "#2DEB5E",
"appName": "My Data Science Platform",
"appURL" : "https://examples.data.org/app/",
"defaultProjectName": "my-datascience-project",
"errorPageContactEmail": "admin@example.datascience.org",
"favicon": "https://example.datascience.org/favicon.ico",
"gitCredentialsDescription": "My customized Git credentials description.",
"helpContentUrl": "https://help.example.datascience.org",
"hideAddProjectAction": false,
"hideDownloadDominoCli": false,
"hideGitSshKey": false,
"hideLearnMoreOnFile": false,
"hideMarketingDisclaimer": false,
"hidePopularProjects": false,
"hidePublicProjects": false,
"hideSearchableProjects": false,
"hideSuggestedProjects": false,
"pageFooter": "<div style='width:100%; height: 50px; background-color: black; color: white;text-align: center;'>Example Page footer</div>",
"showSupportButton": true,
"supportEmail": "support@example.datascience.org",
"supportUrl": "https://example.datascience.org/support/",
"pdfTemplateUrl": "https://example.com/?export=download_link",
"pdfAppName": "My Data Science Platform PDF title"
}