MyBB Community Forums

Full Version: Color of input
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, How can I change the color of these buttons?

[attachment=12979]

Thank you.
In your global.css these options control those aspects..

input.textbox {
background: #111111;
color: #777777;
border: 1px solid #3a3a3a;
padding: 1px;
}

textarea {
background: #1a1a1a;
color: #AFAFAF;
border: 1px solid #3a3a3a;
padding: 2px;
font-family: Verdana, arial, Sans-Serif;
line-height: 1.4;
font-size: 13px;
}

select {
font-size: 13px;
font-family: verdana;
color: #777777;
background: #1a1a1a;
border: 1px solid #3a3a3a;
}

This is not apart of the default global.css, add it below the 3 above

input {
background:#222222;
color: #777777;
border: 1px solid #3a3a3a;
padding: ;
}
Thank you very much! Smile
(2009-03-03, 10:09 AM)atomicj Wrote: [ -> ]This is not apart of the default global.css, add it below the 3 above

input {
background:#222222;
color: #777777;
border: 1px solid #3a3a3a;
padding: ;
}

Thanks was wondering how people managed to change this bit.