• Resolved trip62

    (@trip62)


    Hi,

    Thanks as always for the great plugin. Unfortunately with the latest update (Version 5.0.4) I appear to have ran into a problem and wonder if you can help.

    Since the update the font color of the actual comments is now dark/black/grey as in these screenshots:

    https://i.imgur.com/MrUr9pE.png
    https://i.imgur.com/jJCbcf3.png

    First screenshot is Chrome on desktop, second is Safari on an iPhone.

    Before this color was white on the same blue background so it was clearly readable, now it isn’t.

    I can’t see a setting in ‘Styling’ tab to specifically choose the color of the comments? I thought there was one?

    (I have cleared caches after updating the plugin, CDN cache too)

    (I also tried ‘Disable font awesome css loading’ which did not fix anything, so switched it back to off)

    Thanks for any assistance. And sorry if I am missing something obvious.

    Cheers!

    The page I need help with: [log in to see the link]

Viewing 15 replies - 1 through 15 (of 15 total)
  • True. With latest update my text color is grey and it cant be changed with styling menu

    Thread Starter trip62

    (@trip62)

    That’s strange. What about those of us, like me, with a dark(ish) background that cannot work well with grey comments?

    Hoping @gvectorssupport has the solution.

    Plugin Support gVectors Support

    (@gvectorssupport)

    Dear users,

    wpDiscuz comment text color inherits form your theme color.

    I suggest to change it using custom css code. Just navigate to Dashboard > Comments > Settings > Styling admin page, put this css code in “Custom CSS Code” textarea

    #wpcomm .wc-comment-right .wc-comment-text * {
        color: #ccc !important;
    }
    Thread Starter trip62

    (@trip62)

    Thanks, it works!

    When i pasted this

    #wpcomm .wc-comment-right .wc-comment-text * {
    color: #ccc !important;
    }

    Then my all text is grey

    What i have in this box:

    .comments-area{width:auto;}

    #wpcomm p code {
    background-color: #500000;
    }
    #wpcomm .wpdiscuz-spoiler-wrap .wpdiscuz-spoiler {
    background-color: #500000;
    }
    #wpcomm p blockquote{
    background-color: #500000;
    }
    #wpcomm .wc-comment-text p a {
    color: #2D8898 !important;


    I think wpiscuz might give us to manually define all colours in comments

    • This reply was modified 8 years, 2 months ago by because i.
    Thread Starter trip62

    (@trip62)

    I wanted white text in my case, so I changed the code to

    #wpcomm .wc-comment-right .wc-comment-text * {
    color: #FFFFFF !important;
    }

    Thread Starter trip62

    (@trip62)

    I still have a slight problem @gvectorssupport

    The CSS code helped turn the comment color white for MOST comments but any comments that are long in length (and have ‘Read More’ button) still show in the darker color.

    When you click ‘Read More’ the comment color is then all white.

    Is there additional code to catch those longer comments?

    Thanks.

    Thread Starter trip62

    (@trip62)

    ^ As in this screenshot: https://i.imgur.com/nf9LIXG.png

    Plugin Support gVectors Support

    (@gvectorssupport)

    Also add this css code in “Custom CSS Code” textarea:

    #wpcomm .wc-comment-right .wc-comment-text{
    color: #fff !important;
    }

    In any case, please let us know.

    This is not working for me after this update. Dont know what was changed but it failed.

    This is all my code

    .comments-area{width:auto;}

    #wpcomm p code {
    background-color: #500000;
    }
    #wpcomm .wpdiscuz-spoiler-wrap .wpdiscuz-spoiler {
    background-color: #500000;
    }
    #wpcomm p blockquote{
    background-color: #500000;
    }
    #wpcomm .wc-comment-text p a {
    color: #2D8898 !important;

    #wpcomm .wc-comment-right .wc-comment-text * {
    color: #FFFFFF !important;
    }
    #wpcomm .wc-comment-right .wc-comment-text{
    color: #fff !important;
    }

    This is how it appears

    View post on imgur.com

    It is not white

    Plugin Support gVectors Support

    (@gvectorssupport)

    Please navigate to Dashboard > Comments > Settings > Styling admin page, change “Vote Buttons” colors.

    http://www.screencast.com/t/tld2gsrpV

    Buttons are white now. Text not…

    View post on imgur.com

    How can i return to previous version of wpdiscuz? Dont know why colors are different now

    up

    Plugin Support gVectors Support

    (@gvectorssupport)

    #wpcomm .wc-comment-right .wc-comment-text * {
       color: #FFFFFF !important;
    } 

    In this code * means that all texts will be white, and also the rest codes

    #wpcomm .wc-comment-text p a {
       color: #2D8898 !important;
    
    #wpcomm .wc-comment-right .wc-comment-text * {
       color: #FFFFFF !important;
    }
    #wpcomm .wc-comment-right .wc-comment-text{
       color: #fff !important;
    }

    wouldn’t have any effects. Please remove either

    #wpcomm .wc-comment-right .wc-comment-text * {
       color: #FFFFFF !important;
    }

    or the rest of css codes, which are connected which text color.

Viewing 15 replies - 1 through 15 (of 15 total)

The topic ‘Comment color changed since update, not readable’ is closed to new replies.