Hi all,
I'm trying to accomplish the following:
- two bullet lists next to each other (using gf_left_half for that)
- remove the bullets
- create a border around the label
So far, I've tried http://www.gravityhelp.com/forums/topic/can-gf-use-images-to-make-form-selections (and some changes to that) but it doesn't seem to work. The radio button is persistent
to say the least :-/
I'm probably overlooking something, or just being stupid...
css, so far:
.gform_wrapper ul.gravity_radio li input[type="radio"] {
display: none !important;
}
.gform_wrapper ul.gfield_radio li input[type="radio"] + label {
padding: 5px;
border: 1px solid #000;
background: #ddd;
}
.gform_wrapper ul.gfield_radio li input[type="radio"]:checked + label {
border: 1px solid #000;
background: #eee;
font-weight: normal !important;
color: #c00;
}
The form is located at: http://dev.lauretum.net/wordpress/test-radio-buttons/
Any help would be appreciated.
Thanks!
Edde