Removing the selection boxes borders using CSS in Configurable List widget

  • ProcesosNovis
    Asked on March 6, 2017 at 5:23 PM
    it's possible to remove with CSS the selection boxes borders?

    I almost got it for the dropdowns with this:

     

    select {

    font-size:10px;

    border:0px;

    outline:0px;

    }

     

    but I dont know how to do the same with "Estado" (type: textarea) and "Duration" (type: number)

  • Chriistian Jotform Support
    Replied on March 6, 2017 at 8:02 PM

    Hi,

    Please inject this custom CSS to your form:

     

      textarea {

      box-shadow: none !important;

      border: 0px solid #fff !important;

    }

    .stepper-wrap input.stepper {

        border: 0px !important;

        box-shadow: none !important;

    }

    select {

        box-shadow: none !important;

    }

     

    Hope this helps.

    Regards