How to set a custom width for an individual text box without affecting the global css?

  • Strategy1st
    Asked on January 7, 2018 at 11:45 AM

    Hello, how can I set a custom width for an individual text box without affecting the global css text box width?

  • David JotForm Support Manager
    Replied on January 7, 2018 at 1:14 PM

    You need to apply the CSS using the ids instead of classes, example:

    #input_49{

        width: 200px !important;

    }

     1515348706width Screenshot 10

  • Strategy1st
    Replied on January 7, 2018 at 1:36 PM

    Great! Problem solved - thank you!