Change the text color of headings

  • vibekes
    Asked on December 13, 2017 at 3:41 AM
    I wanted to change the colors of the headline, but don’t seem to be able to do so. Is that because I’m using a template? I know I was able to change headlines when I made forms that I created from scratch.
    Is there a way to change the headline colors while using this template?
    Thanks,
    Vibeke
  • Jan
    Replied on December 13, 2017 at 4:40 AM

    You can use the CSS code below to change the text color of the headings:

    .form-header-group .form-header {
    color: red;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Here's the result:

    151315801312 13 38i5r Screenshot 10

    Hope that helps. If you need further assistance, please let us know. Thank you.

  • vibekes
    Replied on December 13, 2017 at 1:43 PM
    Hi,
    I just did this but the color didn’t change…? I’m not seeing any changes after adding this CSS code.
    Also, can I use a custom color code instead of saying “red” or “yellow” in the code?
    Thanks,
    Vibeke
    ...
  • Jan
    Replied on December 13, 2017 at 3:08 PM

    I cloned your form and I found out that there is a missing "." at the beginning of the code. Here's a screenshot:

    151319563912 14 47p3a Screenshot 10

    Here's the correct CSS:

    .form-header-group .form-header {
    color: #ffff00;
    }

    Yes, you can use color names, RGB values or HEX values.

    Hope that helps. Thank you.