Site logo

[Resolved] Make contact form fields full width

Home Forums Support [Resolved] Make contact form fields full width

Home Forums Support Make contact form fields full width

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1897336
    Oliver

    How can I make the fields from my contact form (contact form 7) full width?

    #1897351
    David
    Staff
    Customer Support

    Hi there,

    if you can link me to a page where i can see the form ill take a look.

    #1897381
    Oliver

    Hi David, here you go

    #1897405
    David
    Staff
    Customer Support

    Couple of options, you can either edit the HTML in the Contact Form 7 plugin setup. And increase the size attribute in the input fields example:

    <input type="text" name="your-name" value="" size="40" .....

    40 = the number of characters, change that to a larger value and the field will expand.

    OR you can use some CSS:

    .wpcf7 input[type="text"], 
    .wpcf7 input[type="email"] {
        width: 100%;
    }
    #1897411
    Oliver

    The CSS did it, thank you very much David!

    #1897413
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.