Josh wrote:Hello Mina,
First off I would like to thank you for the awesome theme. I dig it. Also, the forums are very helpful and I was able to figure most of it by reading them. So thanks to you and the rest of your Minefield users.
Ok, I'm just about done with tweaking the theme to my personal liking. The only subject that eludes me is the comment box. Like when a viewer wants to leave/submit a comment. I was wondering how you could change the text color and perhaps the border surrounding the fill out form itself. The background I figured out, it's just mainly the text that I can not find. Much appreciated.
Josh
You're welcome! Glad you like it and that the forums helped you!

And thanks for posting when you found an answer yourself...it may help others.
Okay, changing the font color is easy. Go into the stylesheet and find this line:
- Code:
#author, #email, #url, #comment, #submit { background: #efebd6; font-family: Verdana, Arial, Times; font-size: 8px; margin: 5px 5px 0 0; padding: 0; }
and add this to that line:
color: #XXXXXX; replacing the
XX's with the hex code for the color you want.
I'm not quite sure what you're looking for with this second question. If you're referring to the exact box where comments are typed in, that doesn't currently have a border. If want to add one then go back into the line I referenced above and add this:
border: #XXXXXX 1px solid; again replacing the
XX's with the hex code for the color you want. The
1px size can also be changed.