how to change fullname's first and last text fields

  • nmoore1127
    Asked on March 31, 2014 at 12:11 PM

    how do i make the first name last name fields longer than the default

  • Elton Support Team Lead
    Replied on March 31, 2014 at 12:49 PM

    Hi,

    Inject the following CSS codes to your form, this will allow you to control the first name and last name field's width.

    input[name$='[first]'] {

    width: 120px;

    }

    input[name$='[last]'] {

    width: 160px;

    }

    Guide: http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    You can change the width values to your preference.

    Regards!