How to remove the shadow around my form?

  • billmats
    Asked on June 27, 2016 at 1:08 PM

    I have tried all of the methods listed and all of the css statements to remove the shadow around the form but still not able to remove them.  I have tried building new forms to test with as well and cannot remove the shadows on those as well.

     

     

  • John_Benson
    Replied on June 27, 2016 at 2:16 PM

    In order to remove the shadow around your form, you will need to inject this custom CSS code:

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

    Here's a guide: how to inject custom CSS code.

    Hope that helps. Thank you!

     

  • billmats
    Replied on June 27, 2016 at 2:45 PM

    Worked, thanks!