How can I change the colour of day fields?

  • curtiselectricalqld
    Asked on April 19, 2019 at 4:03 PM
    I cant seem to find the code to change the colour of these fields, I want each day of the week and its associated fields to be a different colour from  the previous day, to make it easy to read, can you assist/
  • denis_calin Jotform Support
    Replied on April 19, 2019 at 4:22 PM

    Hi @curtiselectricalqld!

    Can you please add the following CSS code to your form:


    #label_input_69_0 {

        background-color : white;

    }


    #label_input_11_0 {

        background-color : blue;

    }


    #label_input_12_0 {

        background-color : green;

    }


    #label_input_23_0 {

        background-color : yellow;

    }


    #label_input_28_0 {

        background-color : red;

    }


    #label_input_29_0 {

        background-color : brown;

    }


    #label_input_30_0 {

        background-color : orange;

    }


    #label_input_33_0 {

        background-color : purple;

    }

    You can change the colors in each one to see which ones you like better! Here is a list of all CSS colors: https://www.w3schools.com/cssref/css_colors.asp