Dear terrapinj,
Please give us the link to your form and also please tell us the amount of pixels, that you have defined in the backend.
Thank you.
The simple text field is 200px for the label and 450px for the field size.
The text area field is 200px for the label and 450px x 150px for the field size.
No matter what size I define the field as it looks just like this:
http://christieandmikey.com/song-requests/
Dear terrapinj,
Please try adding the following code to your website’s style.css file:
.form20 input[type=”text”] {
width: 450px !important;
}
.form20 textarea {
width: 450px !important;
}
Thank you.
That fixed the field size issue but the label is still on top of the field text area instead of to the left as I selected.
Is it possible to fix?
Dear terrapinj,
Please also add the following code for the mentioned allignment.
.form20 .wdform-field {
width: 700px !important;
}
.form20 .wdform-label-section {
width: 150px !important;
}
Thank you.