I am using the arcanum theme but I can’t find the forum for it.
I want to know how to remove capitalization in the comments area. When I start typing the comments, it’s all shown as capitalized letters but when I post the comment it’s shown as lowercase. I just want to see the true case of the letters. It’s very confusing for me and the visitors as well.
That is a design choice which you can turn off with CSS:
body .comment-form-author input,
body .comment-form-email input,
body .comment-form-url input,
body .comment-form-comment textarea {
text-transform: none;
}