How do I get rid of the shadow outline around a transparent form

  • stevelisi
    Asked on July 20, 2016 at 5:53 PM

    How do I get rid of the shadow outline around a transparent form Image 1 Screenshot 20

  • liyam
    Replied on July 20, 2016 at 8:53 PM

    Hello stevelisi,

    You can inject this CSS code to remove the box shadow:

    .supernova .form-all {

        box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
        -webkit-box-shadow : 0 0 0 rgba(0, 0, 0, 0) !important;
        -moz-box-shadow : 0 0 0 rgba(0, 0, 0, 0) !important;

    }

    If you have questions, or you need assistance, please let us know.

    Thanks.

  • stevelisi
    Replied on July 21, 2016 at 11:00 AM

    Thanx.. worked great.  How about the shadow on the thank you page?

  • John_Benson
    Replied on July 21, 2016 at 11:17 AM

    To remove the shadow on the thank you page, you need to inject this custom CSS code:

    div#stage { 
    box-shadow: none !important;

    Guide: How-to-Inject-Custom-CSS-Codes

    Don't hesitate to ask more question, we'll be glad to help you anytime. Thank you.

  • stevelisi
    Replied on July 21, 2016 at 11:24 AM

    Thanx!! worked Great