MarkFL |
12-04-2015 04:17 PM |
Quote:
Originally Posted by jagtpf
(Post 2559754)
Thanks but that affects more than the background in the Chatbox.
|
I will use "red" as the background color to which we wish to change. You can add CSS selectors to your "additional.css" template(s)...you will need to do so for each style in which you want the change.
If you wish for this new background color to affect the message input area, add:
HTML Code:
#vsacb_entermessage {
background: red;
}
If you wish for this new background color to affect the message display area, add:
HTML Code:
#vsacb_messagearea {
background: red !important;
}
If you have a lot of styles, and you want the same change to all of them, and you don't have a master parent style with all other styles as children, then let me know and I can give you a plugin that will make the change to all styles (so you won't have to make the edit a bunch of times). :)
|