Contact page boxes can’t see questions

Hi,

on my contact page I can’t see the whole question mobile. Is there a way to make the box say 2 lines so they can see the whole question.

https://lux360.net/pages/buyers

Hi Mike,

The input fields you are using that overflow and do not wrap have the type “text”.

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input

If you are wanting text to wrap on multiple lines, the quickest and cleanest solution would be changing the input type to “textarea”. As seen on the documentation link below, you can then set either the height or attribute rows which will allow the text to wrap as expected.

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea

Hope this helps!