How do I change the message boxes and such to a white background?

  • JellyGraphics
    Asked on September 12, 2015 at 3:01 PM
    2.  How do I change the message boxes and such to a white background?
  • KadeJM
    Replied on September 12, 2015 at 3:22 PM

    Do you mean you want to change the white textbox input background? Or?

    If so you can do this using our form designer which is the easiest way to customize your form the way you want with little or no coding necessary.

    Alternatively you can do this with injected css via the code below. 

    input { background-color : purple ; }

    How do I change the message boxes and such to a white background? Image 1 Screenshot 20

    Right now it's 'purple' but if you want a different color just replace "purple" with the color or hexcolor you want the input to become.

    For your sake though I know that you said you wanted white.

    input { background-color : white ; }