Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
6.8k views
in Themes by
How to change the red color of the "Unanswered" questions into "Blue from Red" in Snowflat?

1 Answer

+1 vote
by

In SnowFlat qa-styles.css at line 1056 find below code

.qa-a-count-zero{
	background-color: #e74c3c;
}
Replace color code to inherit or any code you want
.qa-a-count-zero{
	background-color: inherit;
}

or just remove background-color property and it will take parent default color, which is blue

.qa-a-count-zero{}
...