You have the option to change the default appearance of the Stardust Portal by creating custom skins, which you can select in the Portal Configuration view.
This chapter covers the following:
To create a custom skin:



Now you can see your custom skin in the Skin section of your Portal Configuration view.

Figure: Select your custom skin.
The following sections shows example style sheet classes for a custom skin overriding the default appearance.
.sg-footer-bar .sg-copyright {
visibility: hidden;
}
.sg-build-info {
display: none;
}
.sg-alerts {
display: none;
}
.sg-sign-out {
display: none;
}
.sg-common-menu {
background-image: url("./images/banner.jpg");
}
To hide the logo
.sg-common-menu {
display: none;
}
In case you like to import a skin that is defined via a plugin jar, you have to add this jar file to the lib folder of your runtime environment. The defined skin then is available and can be selected in the Portal Configuration view. Section Creating a Portal Skin to be provided as Plugin Jar of chapter Using the Portal Framework in the Online Documentation - Programming Guide Creating a Portal Skin to be provided as Plugin Jar of chapter Extending the Stardust Portal Components in the Programming Guide describes the structure that is required for the usage of such a plugin.