How to increase the font size of sub-label?

  • abdullahhajar827
    Asked on May 2, 2015 at 5:00 AM
  • Ben
    Replied on May 2, 2015 at 6:07 AM

    All sub labels have the class: form-sub-label so we can use this to add our own styles to them.

    For example:

    .form-sub-label {
       font-size: 14px;
    }

    or you can change color:

    .form-sub-label {
       color: red;
    }

    or if it is bold, italic or underlined:

    .form-sub-label {
       font-weight: bold;
       font-style: italic;
       text-decoration: underline;
    }

    Either of the codes you wish to add, it is best to add them as shown here: Inject Custom CSS Codes

    - all the way down, after all the other code in there (if any).