The gf_left/right_half css classes don't render well on some screens so I am trying to figure out how to essentially override them for mobile devices but am not having much luck. Do you guys know of a good way to do this?
I tried this, and a few variations, but no luck:
[css]
@media only screen and (max-width: XXXpx) {
li.gfield.gf_left_half, .gf_left_half {
width: 97% !important;
}
li.gfield.gf_right_half, .gf_right_half {
width: 97% !important;
}}