AnnouncementsVideosCensorshipReligionFunnyConspiracyAwwwAnarchoCapitalismCryptoThemesIdeas4MatrixAskMatrixHelpTop Subs
1
body {background-color: #92a8d1;}
.messages > div {
color: white;
}
Comment preview
[-]x0x71(+1|0)
But it's clearly orange. The front page looks pretty good.
[-]iSnark0(+0|0)
Thanks, I'm just tooling around, experimenting, I'm new to CSS, and this presents a good opportunity to toy around without breaking anything (I think). ;-)
[-]iSnark0(+0|0)
Yeah, I started with White/Blue, and saved the message, Unfortunately, you can change the message body where the CSS info is, but you can't change the message header. I defaulted the message body back to white for consistency
[-]x0x70(+0|0)
Ah. You can target the chat header. Try:
#chatArea .title a {
 color:orange;
}
That would do the text.
Or to change the background
#chatArea .title {
 background: darkorchid;
}  

But better to change it for all the sidebar titles:
#sidebar .area .title {
 background:darkorchid;
}

Don't hesitate to ask for help. Css is a handy skill. I just wish I was more of an artistic person to leverage what I know.