Please or Register to create posts and topics.

Change the color of the unread message

Hi everyone!
Sorry for my English. I’m writing from Poland 🙂
I have a problem. How can I change the color of an unread message? Currently, the color is slightly darker and I would like to change it completely. Where can I find the right line of code?

Regards!

Hi @rogal

#af-wrapper .unread:before {
    color: #2D89CC;
}

wp-content/plugins/asgaros-forum/skin/style.css

If I’m not mistaken 🙂

Unfortunately it does not work. Everything I do in this file is not updated on the website / forum. 🙁

Ctrl+f5

to throw off the cache on the forum page

Did not help :(
It is strange that other functions from this file work. Example: opacity

Hello @rogal

You can try it with the important-keyword:

#af-wrapper .unread:before {
    color: red !important;
}

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

Pushing for anyone who wants to know: Correct code is:

#af-wrapper #read-unread .unread {
    background-color: green;
}

#af-wrapper .unread {
    color: green;
}

I put it in the main Customize -> Additional CSS. Works fine.

Uploaded files:
  • img1.jpg
  • img2.jpg