There's a border around the form, how can I get rid of it?

  • Bill McAbee
    Asked on April 27, 2017 at 1:38 PM
    Second question, with the URL below, it has a border around the form, which I want to get rid of.  Trying hard for customers to see as not a third party form and as part of the website.  How do I get rid of it?
  • Jan
    Replied on April 27, 2017 at 3:46 PM

    My understanding is that you want to remove the border and the border shadow of the form.

    Theres a border around the form, how can I get rid of it? Image 1 Screenshot 30

    You can remove that by using custom CSS code. Here's the CSS:

    .supernova {
    background-color: #ffffff;
    }

    .supernova .form-all {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Here's the result:

    Theres a border around the form, how can I get rid of it? Image 2 Screenshot 41

    Hope that helps. Thank you.