• Does anyone know how can i adjust the height and the width of the textarea boxes?

    I’ve tried adjusting the number of rows and columns, or inserting the boxes in a table, but there is no way i can increase the width of the textarea box.

    Any ideas?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • see if the textarea has a class. if not the form it’s in should have a class or an idea. then target it through CSS.

    example:

    form#whatever textarea {
    width: 1000px;
    height: 1000px;
    }

    This worked for me (though just as textarea, I didn’t need form#whatever) in the plugin stylesheet (not the main stylesheet). Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Contact Form 7] Adjusting width / hight of the textarea box’ is closed to new replies.