Tagged: gravityforms
Is there a way to enlarge the textfield ? Settings in gravity forms settings (small, medium, large) have no influence on the output, textfield is always small (which is a shame if you want to use a subject field). How to enlarge a textfield similar to 100% / 50% in enfold formbuilder ???
Hey!
Please use following css code – insert it into the quick css field:
#top .gfield textarea {
min-height: 200px;
}
Regards,
Peter
Hey Dude,
thanks, but thats the text area… I´m talking about a single line textfield… whatever you do in gravityforms settings… the field has always the same size…
Ok, found it….
#top .gform_wrapper input{
min-width: 100%;
}
haha, now the buttons are 100% too… logical… have to find another way…
ok, now it fits… sorry for this monologue
#top .gform_wrapper input.large{
min-width: 100%;
}