Background Color of Form

Is it possible to change the background color of the form without dragging the controls into a grid and setting it that way?

Hello @teddy0bear,

You can change the background color of the entire form by adding custom styling to CSS editor:

.fd-form {
    background-color: blue;
}

Perfect! Just what I was looking for. Thank you.

1 Like