Adding background image to all screen

Can anyone please help with how to add Adding background image to all screen in UI ?

Hi @aradhanay,

you can add the CSS directly in the custom CSS section of the Skin rule:

  1. Open your skin rule.
  2. Go to the custom tab within the Skin rule,Add the background image CSS directly here:
    body {
    background-image: url(/webwb/background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }
    By following these steps, you can add a background image to all screens in the UI in Pega.

Regards,

Prasad