We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Chatbox colors | Forum

Topic location: Forum home » Support » General Questions
Attila
Attila Nov 8 '15
Hello!
I use the "Simplicity" theme. Everything is OK, but the text messages in the chatbox are not visible.  The background of the text is very pale. How, and where can I change it? Please help me... :)

I attached picture.
Thanks
Attachments:
  oxwall chatbox.jpg (202Kb)
Darryl B Leader
Darryl B Nov 8 '15
The two elements below affect what you are looking for. Just copy and paste into your custom css in the admin panel, and set to the color you want. These will also show when you go to your messages page, so make sure the colors work there as well.

This changes the font color.

.ow_chat_dialog_wrap .ow_dialog_in_item p {

    color: #000;

}

This will change the background color.

.ow_dialog_item.odd .ow_dialog_in_item {

    background-color: #000;

}

.ow_dialog_item.even .ow_dialog_in_item {

    background-color: #000;

}


The Forum post is edited by Darryl B Nov 8 '15
ross Team
ross Nov 8 '15
Darryl +1 Thank you.