Yeah, the CSS Ready Classes aren't meant to be applied to the HTML blocks. You could target the HTML field by the containing list element ID, then position it wherever you want to in the form with some custom CSS rules. You could float it to the right, but in this instance, you'll probably do better with absolutely positioning the image. You can try adding this to your theme stylesheet and then tweaking it from there.
[css]
body. #gform_wrapper_1 {
position: relative
}
body #gform_wrapper_1 li#field_1_22.gfield_html {
width: 25%;
position: absolute;
top: 30px;
right: 0;
}
screenshot: http://bit.ly/q3jGNS
Posted 13 years ago on Tuesday September 13, 2011 |
Permalink