How can I use section collapse with no border outline?

  • movz
    Asked on January 31, 2018 at 11:23 AM

    How can I remove all border on a section collapse? Just want to use the effect of it so have a line of clean text with no frame or border.

  • Sabbir
    Replied on January 31, 2018 at 12:39 PM

    You can try using the following CSS in your Form designer:

    .form-collapse-table {

    background: transparent !important;

    border-color: transparent !important;

    }
    .form-collapse-right-hide {

    background: none;

    }
    .form-collapse-right, .form-collapse-right-show
    {
      background: none;
    }

    The following guide should help you on how to inject custom css code:  http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    If you have any further query, please let us know.

  • movz
    Replied on February 1, 2018 at 5:06 AM

    Super. Thank you!