Thanks for the kudos. We appreciate it.
First of all, you might want to check this out if you haven't already. It's a visual guide that lays out the basic form structure with ids and classes
http://www.gravityhelp.com/documentation/visual-css-guide/
You can refer back to this recent post on targeting the inputs for styling. In that particular instance, the member wanted to change the background color, but you can apply whatever properties you want.
http://forum.gravityhelp.com/topic/change-field-box-colour#post-7627
As far as the differences in the multi-line field, I simply can't tell you anything definitive without seeing it. Most likely there is some kind of line-height/size setting applied to the textarea element in your theme stylesheet that's causing the difference.
When it comes to the select (drop down) fields, there's very little you can do to style them without using some combination of CSS and scripting. It's not a plugin limitation, it's limited by how the different browsers render the element. You can usually change the background color, and sometimes the font size, but it's not at all consistent across browsers.
That said, if you want to target just the select fields for styling, here's how you do it.
.gform_wrapper select {background-color:#EEEEEE;}
Hope that helps out.
Posted 14 years ago on Thursday July 29, 2010 |
Permalink