This field renders a TEXTAREA on the front end on a form.
I would like that text area to be longer than normal so created the following CSS, but it has absolultely no impact on a form page. Does anyone know why?
Thanks for this and it’s weird because on the form page the width value is not being updated for the text area. Do you know if there is something on a typical form page that would restrain the text area boxes from being larger if you wanted to set their input size beyond what they are set at?
Knack’s native styling for the form column element has a max-width of 600px, whereas you’re specifying 800px:
.kn-form-col.is-constrained {
max-width: 600px;
}
There are also a lot of CSS parameters on textareas and inputs specifying min-width: 100% and max-width: 100%, meaning your custom width specification and resizing is ignored and blocked respectively.
You might need to do a bit more overriding of CSS than just the textarea field unfortunately!