• I am using bbPress with WordPress to build my forum website. Topics in the forum contain a heading bar that contains time and date of the topic as well as a few other options. But the font color is very light and it becomes almost invisible on the white background. I have been helped many times on my blogging journey in this forum. Once again I request your help. Please visit this page to see the problem. Those white areas above the topic and reply actually have some options but are almost invisible.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @theacademicperson

    Use the CSS bellow to change the color of the date:

    .bbp-meta {
      color: black;
    }

    You can change the black to a different color.

    Add the code inside your theme’s CSS editor. If you do not have CSS Editor, install the Simple Custom CSS plugin.

    I hope this helps!

    Cheers,
    Nastia

    Thread Starter theacademicperson

    (@theacademicperson)

    @nastia, I am really really sorry for the delay in my replying.

    Thank you for the code. My problem with the date and time stamp is solved with your code. The date-time part now looks perfect as you told.

    I forgot to mention one thing in my question, the options to “reply”, “vote up”, “report content” etc appear after logging in to the site. Probably that is why you only mentioned the way to correct the date-time (which is always visible regardless you are logged in or out). Sorry it was my fault that I could not properly explain my problem in the question.

    Whatever your help solved one major problem in my website. Thank you again for this.

    If you have a few moments, may I ask you to try with the “reply”, “report content” options. they are visible in the same place beside date-time in the white part above the question or reply. They have the same light color as the date-time parts before you solved it. Here is a link to one of those pages with the problem. Thank you for you help.

    Hello @theacademicperson, I hope all is well!

    Please try the following code:

    .bbp-topic-reply-link, .bbp-topic-report-link.unreported, .d4p-bbt-quote-link {
        color: black !important;
    }

    This should change the links’ color. Please note, The !important rule overrides that particular property. So in the future, if you will require modifying this property again, you must edit the code above.

    I hope this helps!

    Kind regards,
    Nastia

    Thread Starter theacademicperson

    (@theacademicperson)

    @wpmudev-support9 thank you so much. It worked.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Words are not visible’ is closed to new replies.