Hello @casatreslobos,
Currently, we do not have a native option to control the width of the paragraph text area field. I do agree it would be super helpful, though. I’ve made a note of the feature request and we’ll keep it on our radar as we plan out our roadmap for the future.
For now, you can use custom CSS to fix it which I’ve included below:
div.wpforms-container-full .wpforms-form textarea { width: 60% !important;
}
You can change the % to 100 if you want full width.
But in case you want, you can also use a media query to make it responsive like below. For example-
@media only screen and (min-width: 600px) {
.wpforms-form textarea {
max-width: 60%;
}
}
And here’s a great tutorial from WPBeginner on how to add custom CSS like this to your site.
Hope this helps. Thanks ??