Tried to add a comment to an existing question, but was repeatedly sent to a page which does NOT have the answer I need.

  • jackiepoa
    Asked on January 27, 2018 at 11:32 PM

    https://form.jotform.com/72478287684171

    I found the instructions and successfully made the 'New Household or Renewal?' title Red per the request of the Database Manager.  This was not what he wanted.

    In the 'New Household or Renewal?' drop down there are 7 choices.  The Database manager asked if I could make all of the NEW items (there are 3 New items) RED.  I looked for a way to do that, but didn't find an example for changing one of the DROP DOWN items to a different color.

    In an effort to help differentiate the 3 NEW choices from the 3 RENEWAL choices (I used to have them like this New $10, Renewal $10, New $20, Renewal $20...), I changed the ordering and put ALL OF THE NEW first, followed by ALL OF THE RENEWAL (New $10, New $20, New $30, Renewal $10, Renewal $20...).

    In case we still have folks choosing the WRONG description/amount, is there a way to make all of the NEW items RED?

    Thanks!
    Jackie

    Jotform Thread 1364382 Screenshot
  • John_Benson
    Replied on January 28, 2018 at 4:49 AM

    Please add this custom CSS code to change the color of the top 3 option in the screenshot you provided:

    select#input_3 option:nth-child(2) {

    color: red !important;

    }

    select#input_3 option:nth-child(3) {

    color: red !important;

    }

    select#input_3 option:nth-child(4) {

    color: red !important;

    }

    To add the custom CSS code to your form, please follow this guide: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Here's the result of my cloned form:

    151713296056456gfd Screenshot 10

  • jackiepoa
    Replied on January 28, 2018 at 12:15 PM

    Perfect, thanks.  I've put the New Renew New Renew ordering back in...and everything is just the way our Database manager wanted.


    Thank you!