MyBB Community Forums

Full Version: Changing colour of the text fields?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
It it possible to change the colour of the text fields (the bit where you type your post)? Because it you use white as the text colour for your forums you can't see what you're typing. Big Grin
You must use CSS for that, at the moment I can't remember the right code, but search some CSS-tutorials and I'm sure you can find it from there somewhere ^^
In the CSS template edit the INPUT object,

textarea, input, select, object {

Add a background-color by adding a line below that, so it might be something like:

textarea, input, select, object {
background-color: #000000;


Regards,
Chris