Changing the picture of the room booking system

Hi,

we have indico 2.2 and I’d like to change the very first picture seen when clicking ‘room booking’.
I searched for it, but could not find anything.

Kind regards,

Olivier.

Hey,

you would have to search for globe.png. This is the image we use in the RB landing page. In order to use a custom one you would have to put your file in the same directory where globe.png is and the modify a set of CSS rules (search for rb-splash-background in the styles/palette.scss file).

Regards,
Michal

As a better solution to this I would recommend using the Indico customization (https://docs.getindico.io/en/stable/config/settings/#customization)

In order to change the landing page image create a CSS file with the following rule in the customization folder.

#rb-app-container .landing-wrapper > .ui.grid::before {
    background-image: url(/static/custom/files/customsplashimage.png);
}