In my contact form I always get form fields with the hight of one row. For the text area field I would like to change it to several rows. The documentation of contact form 7 gives the ability for (cols)x(rows). In a standard word press theme it works but how can I recieve this under the corporate pro theme?
Hi,
Make sure the generated shortcode for textarea looks something like this :
[textarea your-message 40×10 “your message here …”]
This should work with the design.
Textarea row height seems overriden by theme CSS preventing it to take actual rows height. So this can be fix by adding simple custom CSS. Follow the steps below:
1. First you need to Go to your Dashboard -> Appearance -> Customize -> Theme Options -> Custom CSS options.
2. In this section you need to add this CSS:
.wpcf7-form-control {
height: auto;
}