Home Forums Trusted Pro How can I change the colour of meta data in comments? Reply To: How can I change the colour of meta data in comments?

#8812
Andy
Keymaster

The date+time, edit and reply text in the comment meta data are links so this custom CSS will change the color:

.comment-list a {
    color: #404040;
}

and if you also want to change the color on hover, use this too:

.comment-list a:hover {
    color: #00bc96;
}