How can I remove the borders from the headers?

  • dgspencer
    Asked on July 25, 2017 at 5:29 PM

    How can I remove the borders from the headers?  No doubt, it will require some CSS?

  • aubreybourke
    Replied on July 25, 2017 at 5:39 PM

    Add the following CSS:

    .form-header-group {
        border : 0px !important;
    }

     

    Heres how to do it:

    How to Inject Custom CSS Codes

     

    You can see it working here:

    https://form.jotformpro.com/72057005658961

     

     

  • dgspencer
    Replied on July 26, 2017 at 11:25 AM

    Well, it didn't work...but I'm in your debt b/c it pointed me in the right direction.  

    form-header-group {

        border : none;

    }

    was the needed code.

    Thanks!