How to Set Font Color on Multiple Choice field?

  • jrogers142
    Asked on February 21, 2018 at 11:49 AM

    I'd like to change the font color on all of my multiple choice answers but I don't see an option to set the font color. 

  • Nik_C
    Replied on February 21, 2018 at 1:15 PM

    For this checkbox fields:

    1519236460Screen Shot 2018 02 21 at 7 Screenshot 10

    You can use this CSS:

    #label_input_88_0 {

        color: red;

    }

    label_input_88_1{

        color: red;

    }

    label_input_88_2{

        color: red;

    }

    label_input_88_3{

        color: red;

    }

    Just change the color:

    1519236675Screen Shot 2018 02 21 at 7 Screenshot 21

    If you need to change on these:

    1519236707Screen Shot 2018 02 21 at 7 Screenshot 32

    You can insert this CSS:

    label#label_input_70_0 {

        color: red;

    }

    label#label_input_70_1 {

        color: red;

    }

    All those CSS should be inserted into Custom CSS Field.

    Let us know if you have any further questions.

    Thank you!