How to remove the border around the form?

  • semcodist
    Asked on October 20, 2016 at 5:56 PM

    1. There still is a background around the form...Can that go away?

  • Nik_C
    Replied on October 20, 2016 at 6:08 PM

    Yes, you can insert the below CSS in your Custom CSS field:

    .supernova {

    background:none;

    }

    It should show like this:

    How to remove the border around the form? Image 1 Screenshot 20

    Let us know how it works for you.

    Thank you!

  • semcodist
    Replied on October 21, 2016 at 10:44 AM
    Thank you for your response!
    I would like to explain a little farther what I am looking for...
    Currently, it looks like this...
    I would like for it to look like this...
    Keith Robinson
    50 Robinson Industrial Drive | Perryville, MO 63775
    Direct: (573) 768-8933
    Tel (573) 547-1072
    Fax (573) 547-1075
    www.SemcoStone.com
    ...
  • Nik_C
    Replied on October 21, 2016 at 11:10 AM

    Unfortunately, we didn't receive your screenshots. Please follow this guide on how to post screenshots in this thread.

    We'll wait for your response.

    Thank you!

  • semcodist
    Replied on October 21, 2016 at 12:52 PM

    Here is the current form...

     

    How to remove the border around the form? Image 1 Screenshot 20

  • semcodist
    Replied on October 21, 2016 at 12:53 PM

    Here is what I would like for it to look like...

     

    How to remove the border around the form? Image 1 Screenshot 20

  • Kiran Support Team Lead
    Replied on October 21, 2016 at 2:01 PM

    Please try injecting the following CSS code to your JotForm in order not to display the form border.

    .form-all {

    border: none !important;

    -webkit-box-shadow: none !important;

    -moz-box-shadow: none !important;

    box-shadow: none !important;

    }

    Hope this information helps!