Please or Register to create posts and topics.

Change Admin/Mod Text Color

The default for Admin and Mod name color is red and green. I am trying to change that to a custom color. I looked at this post (https://asgaros.com/support/topic/adminmod-color-text-change/), but that did not work.

Thanks in advance for any help!

Hello @makernoids

Please try it with the following code:

#af-wrapper .highlight-admin,
#af-wrapper .highlight-moderator,
#af-wrapper .highlight-admin a,
#af-wrapper .highlight-moderator a {
    color: blue !important;
}

 

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

@Asgaros that did not work, it is still red.

Have you cleared all your caches and reload the website with CTRL + F5?

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

That worked! Thank you so much!

@Asgaros Now that I have changed the background, I would like to change the text “You need to log in to create posts and topics.” from black to white, without effecting all the other text on the page.

@makernoids

You can try the following code:

#af-wrapper .info {
    color: white !important;
}

 

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

Thanks!