How can I eliminate the outline and shadow drop from the background?

  • lnogues18
    Asked on October 29, 2016 at 8:07 PM

    I am looking to just have the form fields visible and don't want the outline and shadow box/drop around the background. I have already made the background transparent. Thanks!

     

    Jotform Thread 975575 Screenshot
  • Jan
    Replied on October 30, 2016 at 8:32 AM

    Please insert the custom CSS code below to remove the border and the shadow:

    .supernova .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. If you have any questions, let us know. Thank you.