MyBB Community Forums

Full Version: Css code for textarea text?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay don't get me wrong I know you can change background color yes..

But I want a black textarea for quick reply and thread. Now question is: what is the css code to change the text output from:

0x000000 Text

To something like

0xFFFFFF White?
you can try css style code like below
textarea {
background: black!important;
color: white!important;
}
(2013-07-28, 07:12 PM).m. Wrote: [ -> ]you can try css style code like below
textarea {
background: black!important;
color: white!important;
}

color: white!important;


That worked thanks!