Is it possible to change the color of the reviews?

Posted in: Newspaper
Post count: 253

Hi

The reviews are black, is it possible to change the colors? If so, how, please?
Thank you

Post count: 23312

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.

Post count: 253

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

Post count: 23312

Hello yachtsailingcharter,

Yes, you will have to replace the red value with blue value.

Thanks.

Post count: 253

Thank you very much!

Post count: 253

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!

Post count: 23312

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!

Post count: 253

Thank you, but it still doesn’t work.
Is there another code?

Post count: 23312

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!

Viewing 9 posts - 1 through 9 (of 9 total)
The forum ‘Newspaper’ is closed to new topics and replies.