How can I get rid of the shadow around the form I've made?

  • aspex
    Asked on March 16, 2017 at 10:42 AM

    There's a light grey shadow around the edges of the form when I embed it. How can I get rid of that effect?

     

    Thanks.

  • Nik_C
    Replied on March 16, 2017 at 1:06 PM

    You can copy and paste the below CSS in your Custom CSS field:

    .form-all {

        box-shadow: none!important;

    }

    Also, if you want you can remove the shadow and add the border by using this code:

    .form-all {

        box-shadow: none!important;

      border: 2px solid black;

      border-radius: 5px;

      padding:10px

    }

    Hope it helps.

    Let us know if you have any further questions.

    Thank you!