How to Remove Shadow Which is Around My Form?

  • ceylandu
    Asked on October 26, 2015 at 6:05 AM

    Hello,

    Is it possible to remove the gray bar (see the Screenshot)

    Jotform Thread 689816 Screenshot
  • mert JotForm UI Developer
    Replied on October 26, 2015 at 10:41 AM

    Hello,

    Actually, the gray bar which you see is a box shadow of the border. To remove this, you need to inject custom CSS code to your form. Below, you will find the code to disable box shadow:

     

    .supernova .form-all {
        border: none !important;
        box-shadow: none !important;
    }

     

    I hope this method will help you. If the issue insists, please let us know.

    Thanks.