UiPath FORMS ADD BACKGROUND IMAGE TO FORMS!

hey all, i need urgent help because i’m struggling to display an image as a background for my ui path forms. this should be simple but im struggling

help please i need this asap

Hello,

To achieve this, we need to add some custom CSS to your form, but it doesn’t have a direct option for that.

Try the steps below:

  1. Drag and drop a Container or HTML element.
  2. In the HTML control settings, insert HTML and inline CSS to customise the background.
  3. Use inline CSS for your background, like the example below:
<div style="background-image: url('path-to-your-image'); height: 100%; width: 100%; background-size: cover; background-repeat: no-repeat;">
</div>
  1. Replace path-to-your-image with your image URL or local file path.