I created a form and it has a box shadow on it and am not finding how to get rid of it

  • thinkadvertising
    Asked on April 6, 2016 at 11:34 AM

    I am trying to remove the shadow and best i can figure out, it is on the form-all within a certain css property. If you could help me remove it, that would be great, thanks!

  • Ben
    Replied on April 6, 2016 at 12:37 PM

    To remove it, you can simply add the following CSS to your form:

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

    I suggest adding it after all the other CSS code in there, just to make sure that it has the highest importance.

    You can see here how to add the same to your form if you have not done that so far: Inject Custom CSS Codes