• Resolved Casatreslobos

    (@casatreslobos)


    how do i make the paragraph text box the same size as the name/email box? its way too wide.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Shawon Chowdhury

    (@shawon001)

    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 ??

    Plugin Support Shawon Chowdhury

    (@shawon001)

    Hi @casatreslobos,

    We haven’t heard back from you in a few days, so I’m going to go ahead and close this thread for now. But if you’d like us to assist further, please feel welcome to continue the conversation.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘box size’ is closed to new replies.