The color of the text that is. The text inside those buttons.
You mean in this Display Page like Reply, Add Poll, Notify etc? Or in the posting page like Post, Preview, Spell Check?
On the posting page, sorry.
Open your style.css and find this (or similar lines):/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea, button
{
color: #000000;
font-family: verdana, sans-serif;
}
input, button
{
font-size: 90%;
}
textarea
{
font-size: 100%;
color: #000000;
font-family: verdana, sans-serif;
}
Thanks.
While I have you attention can I ask another question? Where in the CSS is the color code for the subject text color on the post page?
This is mainly for whole body:
/* use dark grey for the text, leaving black for headers etc */
body, td, th , tr
{
color: #444444;
}
And this is for post:
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
overflow: auto;
line-height: 1.3em;
width: 100%;
}
.postarea .post
{
clear: right;
float: left;
}
/* add a visual divider between subject and post */
.post .inner
{
padding-top: 0.7em;
border-top: solid 1px #888;
}
/* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature
{
clear: right;
padding: 1em 0 3px 0;
border-top: solid 1px #888;
width: 100%;
overflow: auto;
line-height: 1.3em;
}
Thanks. One more question :) where can I adjust the color of the quote box and quote text color?
Strangely Enough Here >>> /* A quote, perhaps from another post. */ ???
/* A quote, perhaps from another post. */
.quote
{
color: #000000;
background-color: #CFCFCF;
border: 1px solid #000000;
margin: 1px;
padding: 1px;
font-size: x-small;
line-height: 1.4em;
}