Page 1 of 1
Background color of input objects
Posted: Wed Sep 24, 2025 7:34 pm
by Paul
I would like to modify the background of some or all input objects on my form (url, text, textarea).
How would I accomplish this?
Re: Background color of input objects
Posted: Wed Sep 24, 2025 7:42 pm
by kev1n
Open the "Form Properties", then add your CSS in the Style field.
E.g.
Code: Select all
input[type="url"],
input[type="text"],
textarea {
background: #fffbe6;
}
Re: Background color of input objects
Posted: Wed Sep 24, 2025 9:36 pm
by Paul
I am having trouble setting the background color for select and multiselect objects.
What are the input types for those?
Re: Background color of input objects
Posted: Wed Sep 24, 2025 9:42 pm
by Paul
Found it. I had to edit those individually on the object properties.