How do I modify form width

Permalink
I am using the standard form block on my site. How would I go about increasing the width of my form fields. Is this controlled through a menu or is it hard-coded.
thank you

 
hutman replied on at Permalink Reply
hutman
The easiest way to control this is going to be with CSS you can use the input selectors to control the width of the fields, something like this:
input[type="text"] { width: 200px; }
.
mikefatty replied on at Permalink Reply
mikefatty
Set a max-width:320px and a width:100% so its Mobile friendly 👍
PPPills replied on at Permalink Reply
PPPills
awesome totally worked:

also fyi watch out for your other input types!
johncaas replied on at Permalink Reply
Perfect advice. Thanks!