Rebranding the application
You can rebrand the application and change the company logo in the banner and the About box. You can also change the product name across the application.
- You can rebrand the application in the following ways:
- Logo on the application banner: You must create a CSS file, include the CSS
entry as shown in the example, and save the file in the
<INSTALL_DIR>/extensions/isccs/webpages/isccs/resources/css
directory.For example,
Where.isccs.oneui .idxHeaderContainer .idxHeaderWidthLiquid .idxHeaderPrimary .idxHeaderLogoBox .idxHeaderLogo { background: url('../icons/images/<image>') no-repeat 35% 23%; }
../icons/images/<image>
is the relative path to the logo.Note: The size of the image should be 43 X 16 pixels.For more information, see Customizing the user interface with LESS and property files. - Brand logo in the About box: Using the extensibility workbench, change the image source to point to your brand image in the About box.
- Product name in the About box: Using the extensibility workbench, change the label value of the product name to the required product name in the About box.
- Product name across the application: You can change the product name across the
application by adding the
ISCCS_Product_Name
andTitle_Product_Name
bundle entries in theExtension_bundle.js
file appropriately. For example,ISCCS_Product_Name
:<custom product name>
For more information, see Modifying the literals on non-extensible screens.
- Application icon on browser tab: You can use one of the following procedures to
change the application icon on the browser tab. If you do not prefer the first procedure,
you may follow the second procedure. However, modifying the
container.jsp
file is not recommended.- Using the current image name: Create an image that represents your product and rename
it to
IBMLogoWindow.ico
. Copy the image to<INSTALL_DIR>/repository/eardata/isccs/extn/isccs/resources/css/icons/images
directory. - Modifying the
container.jsp
file:- For desktop version of the application, copy the
container.jsp
file from the<INSTALL_DIR>/repository/eardata/isccs/war/isccs/desktop/container
directory to the
directory.<INSTALL_DIR>/repository/eardata/isccs/extn/isccs/desktop/container
Similarly, for mobile version of the application, copy the
container.jsp
file from the<INSTALL_DIR>/repository/eardata/isccs/war/isccs/mobile/container
directory to the
directory.<INSTALL_DIR>/repository/eardata/isccs/extn/isccs/mobile/container
- In the
container.jsp
file, modify thehref
attribute to point to the path of the custom icon in the following line:<link rel="SHORTCUT ICON" href="<%=request.getContextPath()%>/isccs/resources/css/icons/images/IBMLogoWindow.ico"/>
.
- For desktop version of the application, copy the
Note: The size of the image should be 16 X 16 pixels. - Using the current image name: Create an image that represents your product and rename
it to
- Application name on browser tab: You can override the default application name
by modifying the
ISCCS_Product_Name
bundle entry in theextnbundle.properties
file appropriately. For more information, see Customizing resource bundles.
- Logo on the application banner: You must create a CSS file, include the CSS
entry as shown in the example, and save the file in the
- After customizing the application, create the
isccsdev.war
file by running the following command:isccsdev.war .\buildwar.sh
-Dappserver=<application server> -Dwarfiles=isccsdev
. Use.cmd
instead of.sh
to run the command on Windows. - Deploy the application WAR.