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:
- Drag and drop a Container or HTML element.
- In the HTML control settings, insert HTML and inline CSS to customise the background.
- 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>
- Replace path-to-your-image with your image URL or local file path.