...
In this how to we will adapt the look and feel of the CoreOne Admin User Interface (V2). We will switch out the logo and adjust the coloring scheme.
Step 1 - Switch out the
...
logo and favicon/app icon
Logo
On the CoreOne Admin User Interface file system, browse to the following directory.
...
Simply replace the logo.png
to change the logo.
Favicon/app icon
To change the favicon, create the favicon.ico
file in the C:\ProgramData\itsense\Templates\AdminUI2
folder
To change the app icon that is used when you install the website as a browser, create the icon-192x192.png in
C:\ProgramData\itsense\Templates\AdminUI2
folder
Step 2 - Adjust theme config
...
Code Block |
---|
C:\ProgramData\itsense\Templates\AdminUI2\theme.css |
Step 4 - Adjust subtitle
From C:\Program Files\ITSENSE AG\Admin UI 2.0\wwwroot
copy the file manifest.json
to C:\ProgramData\itsense\Templates\AdminUI2
In this file you can adjust the “short_name
” to something other than CoreOne Suite, this gets added after the page title in the browser title bar:
...
Code Block | ||
---|---|---|
| ||
{
"name": "CoreOne Suite Administration",
"short_name": "CoreOne Suite",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#213A5C",
"icons": [
{
"src": "icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
}
]
} |
Step 5 - Recycle
After you have applied your changes, recycle the application pool and check your changes.
...