MyBB Community Forums

Full Version: Changing Post Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok, I managed to change every color cept for when your tyuping a new thread/reply. I posted a pic of what I mean. You will notice that most of the forum is orange, cept the typing area
Hi,

I don't know if this works but you can try:

Open the template "headerinclude". Search for:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
Add before:
<style type="text/css">
<!--
input {
        border:1px solid #XXXXXX;
        background-color:#XXXXXX;
}
-->
</style>
Of course you have to replace the XXXXXX with the code of the color you need.

Greets,
Michael
It's in the css template for the theme.

Go to:

ACP -> Templates -> *Template Name* -> css

now find: "textarea, input, select, object"

And put in the code

color: #000000;
Cory Wrote:It's in the css template for the theme.

Go to:

ACP -> Templates -> *Template Name* -> css

now find: "textarea, input, select, object"

And put in the code

color: #000000;

I tried that but it didnt work. Do I place the color: #000000; under, or above or anything
It has to be background-color to change the color of the textfields. If you use color it changes the color of the text you're writing. Wink
yea, but it didnt change the color of the posting fields, and the area where the tags are
Look for this in your css:

textarea, input, select, object {
	color: #000000;
	font: small Verdana;
}

add the following to it:

background: #000000;

Change the 000000 to whatever color you want it to be.

You can even use an image. to do so you would add something like:

        background: #000000 url(http://www.mybboard.com/community/images/Light/logo.png);

This would add the [Image: logo.png] image to the text area.