How can I change all the input background color on my form?

  • JeffAdams
    Asked on July 26, 2014 at 11:31 AM

    I want to change the background color of the text areas of my form, i.e., name, phone, email, text areas, etc.  Any area which will be filled in.  What is the css code(s) for all of them at once, or, each individual code?

     

    Thanks!! 

  • jonathan
    Replied on July 26, 2014 at 5:07 PM

    Hi,

    You can change the input background colors using this CSS code

    .form-textbox, .form-textarea, .form-upload, .form-dropdown, .form-matrix-column-headers, .form-matrix-row-headers, .form-matrix-values {

    background-color: #FFFFFF;

    }

    My sample code uses white background color. You can change it according to your preference.

    How can I change all the input background color on my form? Image 1 Screenshot 20

    Hope this help. Inform us if you need further assistance.

    Thanks!