09-15-2015, 02:27 PM
Hello,
I am able to change the background color of all character's text boxes by editing the CSS file. Is there a way I can easily change one particular character's background text box color?
Example: Main character text box background should be blue, while the villain's should be red.
Current CSS for textbox:
Thank you for your assistance,
brg
I am able to change the background color of all character's text boxes by editing the CSS file. Is there a way I can easily change one particular character's background text box color?
Example: Main character text box background should be blue, while the villain's should be red.
Current CSS for textbox:
Code:
.WSEStage .textbox, #NvlTb
{
position: absolute;
background: rgb(0, 0, 0);
background: rgba(0, 0, 31, 0.8); /* Changes all text boxes background color to blue */
font-family: "Lucida Console", Monaco, monospace;
padding: 10px;
box-shadow: 10px 10px 40px black;
/* left: 10px; */
border: 1px solid gray;
border: 1px solid rgba(200, 200, 200, 0.8);
border-left: 1px solid white;
border-top: 1px solid white;
border-left: 1px solid rgba(255, 255, 255, 0.8);
border-top: 1px solid rgba(255, 255, 255, 0.8);
/* width: 620px; */
/* height: 100px; */
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
Thank you for your assistance,
brg