• Resolved Masoud

    (@masoud88)


    Hello,

    Is there this possibility to change the color of comments with CSS code?

    Thank you for your help in advance

Viewing 15 replies - 1 through 15 (of 17 total)
  • Idenovasi

    (@idenovasi)

    Which one? The author name or the post title link? Or both?

    Thread Starter Masoud

    (@masoud88)

    Non of them. The reviews that they write.

    Idenovasi

    (@idenovasi)

    Not sure what you mean, could you send a screenshot and highlight the area?

    Thread Starter Masoud

    (@masoud88)

    https://prntscr.com/mwbcxu

    You can find it in the link above. It’s the comments which clients put as a feedback. The color of their comments

    Idenovasi

    (@idenovasi)

    Please share your website link, I will check the css selector for you.

    Thread Starter Masoud

    (@masoud88)

    https://socialfanplus.com/

    In the footer section

    Thanks

    Idenovasi

    (@idenovasi)

    I saw this code on your site

    
    cwp-comment-excerpt {
    
        display: block;
        color: #787878;
    
    }
    

    Just change the #787878 with #fff

    Thread Starter Masoud

    (@masoud88)

    There isn’t any CSS code that i can use with Simple Custom CSS?
    If no how should i change it?

    Idenovasi

    (@idenovasi)

    Do you use Simple Custom CSS plugin? If so, just add the code I gave you above

    
    .cwp-comment-excerpt {
        color: #787878;
    }
    

    Change the color

    Thread Starter Masoud

    (@masoud88)

    Great. And for the Link part(name of product) how can i change it?

    Idenovasi

    (@idenovasi)

    Use this selector .cwp-comment-link

    Thread Starter Masoud

    (@masoud88)

    I have tried it but it didn’t work.

    Idenovasi

    (@idenovasi)

    Try this one, change the color value

    
    .cwp-comment-link {
        color: #fff !important;
    }
    
    • This reply was modified 6 years ago by Idenovasi.
    Thread Starter Masoud

    (@masoud88)

    Yes, this works. ??
    Thank you very much
    The only thing is that on hover it remains the same color.

    • This reply was modified 6 years ago by Masoud.
    Idenovasi

    (@idenovasi)

    Use this

    
    .cwp-comment-link:hover {
        color: #fff !important;
    }
    
Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Change the color of comments’ is closed to new replies.