How do I remove the shadow border of my form?

  • williama5
    Asked on March 3, 2017 at 3:42 PM
    How do I remove the shadow border of my form?
  • Jan
    Replied on March 3, 2017 at 4:08 PM

    You can remove the border and the box shadow by inject this custom CSS:

    .supernova .form-all, .form-all {
    border: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    }

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

    How do I remove the shadow border of my form? Image 1 Screenshot 20

    Hope that helps. Thank you.