Code Snippet

Just another Code Snippet site

Weblogic : Customize Console

For example, to add a new label in the header of the WLS Console :

Edit the following file :

<WLS_MIDDLEWARE_HOME>/wlserver/server/lib/consoleapp/webapp/framework/skins/wlsconsole/css/console.css

Add the following snippet :

#console-title::after {
    content: "THIS_IS_THE_NEW_MESSAGE";
    color: #FF0000;
    font-weight: bold;
    font-size: 14px;
    padding-left: 250px;
}

,


Leave a Reply

Your email address will not be published. Required fields are marked *