How can I change the background color for an individual question block?
1. Edit your question, and under Advanced settings add a custom CSS class like "header-green" or "header-red" :
2. and then edit your custom template's template.css file, and include this at the bottom:
.header-green .question-title-container,
.header-green .questionvalidcontainer {
background-color: #00CC00;
}
.header-red .question-title-container,
.header-red .questionvalidcontainer {
background-color: #FF0000;
}
145 of 305 people found this helpful.