Advanced design CSS is not working

  • makeshark
    Asked on October 20, 2016 at 1:21 PM

    Advanced design CSS is not showing on live form: https://form.jotform.com/62005488571154

    .form-label should not be displaying and inputs should be 100% width.

    Jotform Thread 966609 Screenshot
  • Elton Support Team Lead
    Replied on October 20, 2016 at 3:13 PM

    Add !important rule to override the existing CSS codes from the default theme.

    Example:

    .form-label{

    display:none !important;

    }

    .form-input{

    width:100% !important;

    }

    There are just some CSS codes that overpowers other CSS codes when viewed live so the important rule is sometimes necessary.

    Thank you!