I would like to modify the background of some or all input objects on my form (url, text, textarea).
How would I accomplish this?
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Background color of input objects Topic is solved
-
- nuBuilder Team
- Posts: 4507
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 75 times
- Been thanked: 515 times
- Contact:
Re: Background color of input objects
Open the "Form Properties", then add your CSS in the Style field.
E.g.
E.g.
Code: Select all
input[type="url"],
input[type="text"],
textarea {
background: #fffbe6;
}
Re: Background color of input objects
I am having trouble setting the background color for select and multiselect objects.
What are the input types for those?
What are the input types for those?
Re: Background color of input objects
Found it. I had to edit those individually on the object properties.