We needed two form pages, one choices and one simple. You were kind enough to recommend Form 7 one problem is attempts to generate a tag for the "your message" area (textarea) that is wider has no affect.
adding
input[type="text"] {
height: 30px;
width: 300px;
}
To the style sheet will widen the text blocks (name and email, etc.)
input[type="textarea"] {
height: 30px;
width: 300px;
}
Will not widen the textarea box.
Would there be something in choices theme that is keeping the box from being any wider than about 200 pixels?














