How can I, for only ONE textbox, set the text align, font weight, and text height ? Tx

  • FRANFORMIA
    Asked on May 1, 2016 at 1:51 PM

    in CSS this is for the whole testboxes....

    input {

        text-align: center;

        font-weight: bold;

    }

     

    My Need is for a textbox ONLY (with the height)...

     

    Tx

  • David JotForm Support Manager
    Replied on May 1, 2016 at 3:28 PM

    To target a specific field, you need it's ID, simply select the field, click on the gear icon, then on properties, and copy the ID:

    How can I, for only ONE textbox, set the text align, font weight, and text height ? Tx Image 1 Screenshot 20

    CSS example:

    #input_1 {

        text-align: center;

        font-weight: bold;

    }

    Let us know if you need more help.