Message Timestamp Color

ZippySLC

Member
Hey --

How can I go about changing the color of the timestamp in posts? I know it uses @mutedTextColor, but changing that will change a bunch of other text that I don't want to change. I can't figure out which property group controls that text.

Thanks in advance!
 
If you want to change just that, then add this to extra.css:
Code:
abbr.DateTime{
    color: #XXXXXX;
}

Replace XXXXXX with the code, or rgb() or whatever. This should change only the timestamp.
 
The older ones are using span instead of abbr.

Try removing the abbr.DateTime and using just .DateTime - see if that works without changing anything else.
 
Top Bottom