Drop shadow is not showing

  • TCGHS
    Asked on February 25, 2017 at 12:57 PM

    I modified page and form colors using Jotform 4.0 - I have seemed to have lost the drop-shadow (box-shadow) around the form.

    How do I get it back?

  • Jan
    Replied on February 25, 2017 at 3:49 PM

    I checked your form and the box shadow is still showing. Here's a screenshot:

    Drop shadow is not showing Image 1 Screenshot 20

    You can just change the value of the CSS if you want to increase it. For example, you can change the Blur property to 20px.

    .supernova .form-all {
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1) !important;
    -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1) !important;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1) !important;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes.

    Hope that helps. Thank you.