How to change text color of the labels?

  • NickDann
    Asked on April 21, 2015 at 12:50 PM
    I also need to make heading text different colour to match rest of text so that when its on dark bg it stands out,
  • Ben
    Replied on April 21, 2015 at 1:04 PM

    To change the label color you should add the following CSS:

    label.form-label {
        color: black;
    }

    You should apply it as mentioned in the other thread, by adding it at the bottom of the custom CSS property field shown here: Inject Custom CSS Codes

    Do let us know how it goes.