How to Change Font Colour?

  • ES
    Asked on August 14, 2019 at 12:26 AM

    Hi there,


    I was wondering how I can make it so the header text is one colour and the subheader text is a different colour? Currently I can only make it so the entirety of the form's text is all the same colour.


    Thanks,

    E

  • BJoanna
    Replied on August 14, 2019 at 5:20 AM

    You can change the color of heading and sub-heading with CSS. 

    You can add the following CSS code to your form:

    .form-header-group .form-header {

        color: red;

    }

    .form-header-group .form-subHeader {

        color: green;

    }

    How to Inject Custom CSS Codes

    Here is a demo form - https://form.jotform.com/92251973789978

    Feel free to test it and clone it.