I have no idea what's going on, but I can't for the life of me figure out how to change my text input widths.
Any ideas?!?
Thanks in advance!
http://zeropainnow.com (I'm aware of the IE9 drop-down issues)
I have no idea what's going on, but I can't for the life of me figure out how to change my text input widths.
Any ideas?!?
Thanks in advance!
http://zeropainnow.com (I'm aware of the IE9 drop-down issues)
Hey there, to target a specific input you can use:
#input_1_5 {
width: 95%;
}
If you want to get more globally on a specific form, you can target the form ID directly:
#gform_wrapper_1 input[type="text"] {
width: 95%;
}
Thanks!
No problem at all, glad to help out!