How to remove the textbox border for just one input (not the whole form)?

  • coldboyallen
    Asked on September 7, 2017 at 2:18 AM

    I don't want to change the look of the whole form via:

    .form-textbox, .form-textarea, .form-dropdown {

        border: none!important;

    }

     

    I just want it for one input i.e. #input_238

     

    Thoughts?

    Thank you.

  • Chriistian Jotform Support
    Replied on September 7, 2017 at 5:19 AM

    If you want to remove the text box border for the specific text box field using CSS (ex. #input_238), inject CSS code like this way:

    #input_238{

    border: none !important;

    }

    Let us know if you need more help.

     

  • coldboyallen
    Replied on September 10, 2017 at 11:39 AM

    Works perfectly. Just needed to add it above the global parameters. Thanks!