Hide the checkboxes on product fields

  • tomorrownight
    Asked on October 2, 2016 at 4:56 AM

    Hello,

    I know i am not able to do this through the wizard, but is there a way of brute forcing the tick boxes away using CSS?  

    Each item in the payment section has a tick box that doesnt do anything - can i remove that using CSS?

     

    Thanks

     

    Adam

  • Elton Support Team Lead
    Replied on October 2, 2016 at 9:45 AM

    While Omerorkun's solution would work, it would however affect all the checkboxes in your form. It'd be a problem later on when you are going to add checkbox fields in your form. With that, you may want to use the following CSS codes to remove only the checkboxes under the payment field.

    .form-product-item .form-checkbox {

        display: none;

    }

    Here's a guide on how to inject custom CSS codes to your form: http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes. Paste it into the bottom section if you have existing CSS codes in your form.

    If you have further questions, let us know.

  • tomorrownight
    Replied on October 2, 2016 at 12:23 PM

    thank you so much! perfect!