ContactForm7の入力欄は、デフォルトの設定で使うと、幅、高さともに小さいので
下記のCSSを適用して調整します。
1 2 3 4 5 6 7 8 9 |
.wpcf7 input { width: 100%; height: 35px !important; } .wpcf7 textarea[name="your-message"] { width: 100%; height: 350px !important; } |