I'm having a small formatting issue while using wp touch pro with gravity forms. One of my fields is cut off at the right side of the page....the site is http://paulson-insurance.info/contact-us/ ...but that wont show you the mobile version, so here is a screenshot:
http://paulson-insurance.info/screenshot_iphone.PNG
WP Touch comes with CSS styling built in for gravity forms, but they don't include anything for the right margin. This is what WP Touch has built into their compact.css:
[css]
/* @group Gravity Forms */
.gform_wrapper li, .gform_wrapper form li{ list-style-type:none!important;
padding-left: 30px;
}
.gform_wrapper .gform_footer {
margin-top: 0;
margin-left: 20px;
}
/* @end */
I added code that I found in the forum to fix the left side of the fields being cutoff...add this to wptouchpro/style.css:
[css]
body.wptouch-pro .post .gform_wrapper .gform_body ul.gform_fields {text-indent:0!important; margin:0; padding:0}
body.wptouch-pro .post .gform_wrapper .gform_body ul.gform_fields li {padding-left:0!important}
what do I have to add to fix the right side?