コメントのテキストエリア
忘れないうちに書き留めておかなくてはいけないと思いつつ、書き忘れていた事もたくさんあります。
それはコメント入力のためのテキストエリアの幅。デフォルトでは幅が狭いのです(^_^;)。
スタイルキャッチャーでスタイルを変更している時には使用しているスタイルフォルダ内のcssではなく、themaフォルダのbase-weblog.cssで変更する事。
177~179行目付近
| #comment-author, #comment-email, #comment-url, #comment-text{ width: 240px; } |
となっているのを「#comment-text 」だけを独立させ
| #comment-author, #comment-email, #comment-url { width: 240px; } #comment-text { width: 440px; } |
