Here are a couple of options for "centralzing" the form
reset the max-width on the form wrapper
.gform_wrapper {max-width:99%!important}
or leave it at 640px, but center the form
.gform_wrapper {margin:10px auto!important}
Here's what I see in Safari
screenshot
The only thing I noted was that the salutation checkboxes were being cut off and part of the list wasn't visible. It's being trimmed by the "overflow:hidden" rule on the parent UL.
style.css line 1881 - change to
ul#input_1_5 {overflow:visible;}
test screenshot
The standard checkbox alignment usually works well without any changes so if you're seeing inconsistencies, it's probably inheriting different margin or padding rules somewhere from your theme thats throwing it off.
Posted 14 years ago on Friday October 29, 2010 |
Permalink