Reputation: 1
Default Text area layout in contact form 7 is [textarea your-message 40x10 "your message here ..."]. This means 40 column and 10 row.
So, to change the default value just change the row and column value 40x10.
Upvotes: 0
Views: 11309
Reputation: 588
Yes, to change the textarea row and column use:
[textarea* message id:contact-message 10x2 placeholder "Your Message"]
For you example, 40x10 means 40 columns and 10 rows.
Hope it answers your dilemma.
Thank You
Upvotes: 2
Reputation: 830
First parameter is the Columns (cols) and Second parameter is the rows (rows) respectively. 40x10 express 40 columns and 10 rows respectively.
Refer to this for more regarding textarea
field.
Upvotes: 0