Changing Color of Result Based on Correct or Incorrect Answer

Hi! I’m trying to figure out how to have the answers on the results page show up differently based on if they are correct or incorrect. So, for instance, “No” is always incorrect on this quiz. I’d like for all the "No"s to show up in red on the results page and all the "Yes"s to show up in green. Is that possible?

This is the results page as it is now. Thank you!!

image|690x273

Hi Patty. What does the content of your confirmation look like? When I use the {all_quiz_results} helper, mine looks like this:

Can you share a link to the page on your site where we can test the quiz and see if there is anything in the confirmation we can use to style those answers? For example, I can do this to turn an incorrect choice red:

div.gform_confirmation_wrapper li.gquiz-incorrect-response {
  color:red;
}

Thank you.