I assume it's in the sytle sheets, but I tried playing around with a few things, and I can't change the color.
Currently, I think the font is 999 and I'd like to change it to 000 to make it more visable.
I cut and paste what I think is the relevant code below. Please help me out and tell me if I'm looking in the wrong place.
Thanks!
Ken
form input.text, form textarea{
width:96%;
border:1px #DDD solid;
color:#999;
padding: 4px 5px;
font:12px 'lucida sans','lucida sans unicode','gill sans','verdana',sans-serif;
background-color: #FFF;
margin-bottom: 15px;
}
form input.text:hover, form textarea:hover{
border:1px #CCC solid;
}
form input.text:focus, form textarea:focus{
border:1px #999 solid;
color:#666;
}
form input.button{
margin-right:8px;
padding:3px 5px;
font:10px Arial,san-serif;
}
* html form input.text,
* html form textarea{
border-color:#999;
color:#999;
}