How to remove box shadow present after removing all CSS from the form?

  • PersonalStrengthsUK
    Asked on January 8, 2016 at 1:36 PM
    Thank you for your help regarding removing the CSS - I have done this and the style has been fixed. However, the form has a border shadow (see here) which is not in the CSS - how can I remove that please?
  • Ben
    Replied on January 8, 2016 at 1:43 PM

    I took a look at your form https://form.jotform.com/form/60054006300940 and I see that you have a theme applied on it - theme is called Solid.

    Unfortunately the theme can not be remove from the form, but it can be replaced. You can (if you wish) to apply the following theme: Reset theme styles

    It will basically apply a theme to your account that will not change your form styles - this does mean that you will loose all of the styling made by the theme itself.

    To remove only the box shadow effect, you can use the following CSS code:

    .supernova div.form-all {
        box-shadow: none;
    }

    You should add it in the same place where you have earlier removed all of the CSS code. You can see the steps to it here: Inject Custom CSS Codes

    Do let us know how it goes.