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.

Background color of input objects Topic is solved

Questions related to customising nuBuilder Forte with JavaScript or PHP.
Post Reply
Paul
Posts: 49
Joined: Mon Aug 25, 2025 6:03 am
Has thanked: 13 times
Been thanked: 2 times

Background color of input objects

Unread post 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?
kev1n
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

Unread post 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;
}
Paul
Posts: 49
Joined: Mon Aug 25, 2025 6:03 am
Has thanked: 13 times
Been thanked: 2 times

Re: Background color of input objects

Unread post by Paul »

I am having trouble setting the background color for select and multiselect objects.
What are the input types for those?
Paul
Posts: 49
Joined: Mon Aug 25, 2025 6:03 am
Has thanked: 13 times
Been thanked: 2 times

Re: Background color of input objects

Unread post by Paul »

Found it. I had to edit those individually on the object properties.
Post Reply