Navigation:  How To > How to Customize ... > WebOffice core Client >

Splashscreen

Previous pageReturn to chapter overviewNext page

It is possible to customize the splashscreen for starting a WebOffice 10.2 SP3 project with the WebOffice core client by editing the CSS files.

 

Default splashscreen of WebOffice core client

Default splashscreen of WebOffice core client

 

There are two options for customizing the default splashscreen of the WebOffice core client:

project specific customizing
general customizing

 

Basically the CSS definition .splashscreen has to be customized via user defined CSS files.

 

Example for customizing the splashscreen of the WebOffice core client:

.splashscreen {

    background-color: rgba(211, 211, 211, 0.4);

 position: absolute;

    top: 0px;

    left: 0px;

    right: 0px;

    bottom: 0px;

    z-index: 20000;

    text-align: center;

    display: table-cell;

    vertical-align: middle;

    background-image: url( ../../images/logo_synergis.png );

 background-repeat: no-repeat;

    background-position: center center;

    text-align: center;

}

 

Project specific customizing

The project specific customized splashscreen will only affect a corresponding WebOffice 10.2 SP3 project and will be executed by adjusting the CSS file in /pub/client_core/styles/<Project-Skin-Name>.css . The name of the CSS file has to correspond with the configured project skin.

 

Note: Please find more details for the configuration of the project skin in WebOffice core project in Customer Information.

 

General Customizing

The general customized splashscreen affects all projects in your WebOffice 10.2 SP3 application and will be executed by adjusting the CSS file in /pub/client_core/styles/weboffice_users.css

 

Customized splashscreen of WebOffice core client

Customized splashscreen of WebOffice core client