Here’s a simple way to use some custom CSS to change the background color and text color of LearnDash quiz answers when using single & multiple choice questions.
.learndash .wpProQuiz_content .wpProQuiz_questionListItem label {
border: 0;
border-radius: 10px;
background-color: salmon;
color: darkblue;
}
.learndash .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_questionList[data-type="single"] .wpProQuiz_questionListItem label:hover,
.learndash .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_questionList[data-type="single"] .wpProQuiz_questionListItem label:focus,
.learndash .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_questionList[data-type="multiple"] .wpProQuiz_questionListItem label:hover,
.learndash .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_questionList[data-type="multiple"] .wpProQuiz_questionListItem label:focus {
background-color: purple;
color: white;
}
background-color
is obviously for the background. color
is for the text color. You can change the values to anything you’d like, including using hexadecimal codes like #c93636
.
border: 0;
removes the default 2px border that LearnDash applies. You can leave this out to keep the border, or use this line instead to change the border thickness, style, and color.
border: 1px solid #000;
border-radius: 10px;
changes the default LearnDash border radius. You can omit this line, change the value to anything you’d like, or set to 0
to remove the border-radius
altogether.
If you’re using the Design Upgrade for LearnDash plugin (free or pro), you’ll want to use this CSS instead. We’re just adding .ldx-plugin
before each CSS statement.
.ldx-plugin .learndash .wpProQuiz_content .wpProQuiz_questionListItem label {
border: 0;
border-radius: 10px;
background-color: salmon;
color: darkblue;
}
.ldx-plugin .learndash .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_questionList[data-type="single"] .wpProQuiz_questionListItem label:hover,
.ldx-plugin .learndash .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_questionList[data-type="single"] .wpProQuiz_questionListItem label:focus,
.ldx-plugin .learndash .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_questionList[data-type="multiple"] .wpProQuiz_questionListItem label:hover,
.ldx-plugin .learndash .wpProQuiz_content .wpProQuiz_quiz .wpProQuiz_questionList[data-type="multiple"] .wpProQuiz_questionListItem label:focus {
background-color: purple;
color: white;
}