The radio buttons and checkboxes get cut off on my gravity forms. I've narrowed it down to this:
.gform_wrapper ul.gfield_checkbox li, .gform_wrapper ul.gfield_radio li {
padding: 0 !important;
}
Because there is no padding on it, the container cuts off the edges of the radio buttons and checkboxes on the top and the left.
I could do something like this to fix it
.gform_wrapper ul.gfield_checkbox li, .gform_wrapper ul.gfield_radio li {
padding:1px 0 0 1px !important;
}
But because the original style in the gf plugin has !important by it, my style cannot override it.
Any ideas on how to fix the issue? Thanks.
FS