コメントのフォームの幅
今回はコメントのフォームの幅だけ変更するので
, #comment-textをカットして
この人だけの幅指定します。
/* content */
#comment-author, #comment-email, #comment-url, #comment-text
{
width: 240px;
}
↓
#comment-author, #comment-email, #comment-url
{
width: 240px;
}
/*追加*/
#comment-text
{
width: 好きな幅サイズpx;
}
