There are a few dynamic field/element id's that contain a "." (dot) in the name that may cause problems when trying to target these directly. The browser thinks the dot is preceding a new class name. That's something we're going back and updating for a future version. You can still target the element just fine for CSS manipulation based on the parent element ID. An example is below.
[css]
body #gform_wrapper_1 .gform_body .gform_fields .gfield .ginput_complex span#input_1_10_4_container select {
color:red
}
screenshot: http://bit.ly/qepfBz
Like Carl mentioned, cross-browser styling options for select elements is limited so some properties you try to apply may not work the same if at all in all the browsers.
Posted 13 years ago on Friday August 12, 2011 |
Permalink