How can I remove the Border of the form

  • dhobrath
    Asked on May 26, 2016 at 1:32 PM
    Also, I'd like to get rid of the shadow that appears around the entire form.  It needs to look completely seamless against the pink background.
  • Mike
    Replied on May 26, 2016 at 2:38 PM

    If you would like to remove shadow around the form container, please add the next CSS:

    .form-all {
    border : none !important;
    box-shadow : none !important;
    }

    How can I remove the Border of the form Image 1 Screenshot 20

    Thank you.