Textbox spacing and padding

  • adolfoanderson
    Asked on May 25, 2016 at 7:10 PM

    I need all text boxes in my form to have the following:

    padding-right:4px;

     

    padding-left:4px;

     

    Also when I duplicate a text box that I've applied CSS to, it just defaults back to a standard text box.

  • jonathan
    Replied on May 25, 2016 at 10:45 PM

    To apply it on all the Textboxes on the form https://www.jotform.com/61455901932153    you need to add the code on the .form-textbox class

    like this :

    .form-textbox {

        padding : 0px 4px 0px 4px !important;

    }

    Textbox spacing and padding Image 1 Screenshot 20

    Since it was applied to the class and not for the individual textbox field, when you duplicate a textbox field, the same css rule will be applied already to the new textbox field.

    Let us know if you need further assistance.