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

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #8802
    elysiumweb
    Participant

    Hi,

    Could you please tell me how I can change the font colour of the meta data in the comments.

    In the comments at the bottom there are some text: data+time  and the words “modify” and “reply”

    I don’t seem to be able to change the colour of those fonts, I tried to add some custom CSS but none of those changes apply to the colour of those fonts (meta-data, etc).

    As I have changed the colour for a “dark mode” the text at the bottom of the comments are too dark.

    Thank you.

    Svain.

    #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;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How can I change the colour of meta data in comments?’ is closed to new replies.