Is there a way to format the color of the Collapse buttons to have them stand out a bit more?

  • kenherr46
    Asked on August 15, 2019 at 4:43 PM
    Question #3
    Is there a way to format the color of the Collapse buttons to have them stand out a bit more?
  • David JotForm Support Manager
    Replied on August 15, 2019 at 4:57 PM

    They can be customized through CSS injection: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    For example, if you need to change the background, and text color:

    1565902600color Screenshot 10

    This could would do it:

    .form-collapse-table{

        background: blue !Important;

    }

    .form-collapse-mid{

        text-shadow: none !Important;

        color: black !Important;

    }

    Let us know if you need more help.