Viewing 3 replies - 1 through 3 (of 3 total)
  • Maybe try adding the following to your CSS:

    Set width to whatever you want it to be.

    div.wpcf7 {
    width: 150px;
    }

    Or you can define the width of each textfield at the time you create the field. Look for the “Size” field and enter a number.

    Example:
    [text srf_name /50 id:srf_name tabindex:2]

    Thread Starter donnchadh

    (@donnchadh)

    I tried changing the size like this:
    <p>Your Full Name (required)
    [text* your-name 15/] </p>

    But this did not change how long the field is showing.

    I set the width, but it changed all the fields size. It doesn’t let me change specific fields.

    Yes, the CSS will change width of entire form.

    Maybe you could try this css and set width of your text fields:

    input[type=”text”] {
    width: 30px;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘My fields are stretched out to long. Why?’ is closed to new replies.