How to remove the background added to my form?

  • rentasota
    Asked on March 3, 2015 at 11:50 AM

    I need help removing the light blue slash background on this form. I tried changing the themes, everything. It seems that when I go into the Designer - it gets added in somehow. Please help...

    Thanks!

     

     

    Jotform Thread 526101 Screenshot
  • Ben
    Replied on March 3, 2015 at 12:49 PM

    To do that please add the following CSS to your jotform:

    div.form-all {
        background-image: none;
    }

    You can see here how to inject it to your jotform: Inject Custom CSS Codes

    Please do add it at the bottom of all CSS code.

  • mayur5478
    Replied on March 3, 2015 at 1:01 PM

    Using custom CSS , you can embed the following class.

    .form-all{

    background:none;

    }

  • mayur5478
    Replied on March 3, 2015 at 1:04 PM

    Using custom CSS , you can embed the following class.

    .form-all{

    background:none;

    }

  • rentasota
    Replied on April 7, 2015 at 1:34 PM

    I used Ben's suggestion and the background is gone! Thanks!