Can I type text in color in the text box?

  • iftach
    Asked on December 28, 2015 at 4:15 AM
  • beril JotForm UI Developer
    Replied on December 28, 2015 at 7:44 AM

    If you are asking changing the font color of input text, it is possible with JotForm as you see below:

    Can I type text in color in the text box? Image 1 Screenshot 20

     

    If you have any question or issues, please do not hesitate contacting us. We will be glad to assist you.

  • iftach
    Replied on December 28, 2015 at 7:47 AM
    Is it possible for only one text box?
    ...
  • abajan Jotform Support
    Replied on December 28, 2015 at 9:46 AM

    Yes, it's quite feasible to apply text color (and other styling changes) to just certain text boxes. That's what CSS's ID selectors are for. For instance, in this demo entered the text of just the second text box is red. That was accomplished by going into the designer

    Can I type text in color in the text box? Image 1 Screenshot 30

    and clicking the CSS tab

    Can I type text in color in the text box? Image 2 Screenshot 41

    and then double-clicking the second text box. That action added an empty rule to the tab's work area (indicated by the second arrow) for me to enter a declaration of color: red;, as shown below:

    #input_3 {
       color: red;
    }

    Since the ID of the second field is input_3 (please see this guide) the rule affects just that field.

    If you need further help with this, we'd be happy to provide it.

    Cheers