How do I make the sub label font darker or bolded

  • territptc
    Asked on August 4, 2017 at 2:58 PM
  • Support_Management Jotform Support
    Replied on August 4, 2017 at 4:04 PM

    You forgot to mention which form you're working on but try the following CSS codes first:

    .form-sub-label {

        font-weight: bold;

        color: black;

    }

    If that didn't work, append !important to both lines:

    .form-sub-label {

        font-weight: bold !important;

        color: black !important;

    }

    Complete guide: How-to-Inject-Custom-CSS-Codes