Hi
The reviews are black, is it possible to change the colors? If so, how, please?
Thank you
Hello yachtsailingcharter,
Please notice that if you want to change the color for your reviews, you will have to use a bit of CSS code to do this. Please try the code below and place it in Theme panel->Custm CSS area.
The code is ->
.td-review-final-score {
color:red;
}
.td-review-final-star {
color:red;
}
.td-review-score span {
color:red;
}
The result -> http://screencast.com/t/r50OAuYhG
Thanks.
Hi Catalin,
Thank you for the reply:)
If I want the blue color what code will I need ?
Do I have to write blue instead of red?
Thank you again
Hi Catalin,
I did put blue instead of red, but only the score has turned to blue, the rest stay as it was in black.
How can I have all the review elements in blue, please?
Thank you!
Hello
Please try to add the !important tag on the front of the value to bring a bigger important for your value. You can try the following code ->
.td-review-final-score {
color:blue!important;
}
.td-review-final-star {
color:blue!important;
}
.td-review-score span {
color:blue!important;
}
Thanks for your understanding!
Thank you, but it still doesn’t work.
Is there another code?
Hello,
Please remove all the code that I provided you above and try the code below.
The code is ->
.td-review-stars{
color:red!important;
}
.td-review-overall div {
color:red!important;
}
div .td-review-score span {
color: red!important;
}
.td-module-meta-info .entry-review-stars {
color:red!important;
}
The result -> http://screencast.com/t/DOPgWfmms -> http://screencast.com/t/l9aPbgnt
Thanks!