1. Despite having set it below all other entries, Send/Submit button shows/overlaps in between other entries.
2. "Enable enhanced user interface" doesn't work on Google Chrome.
LINK: http://bit.ly/rhuaRK
1. Despite having set it below all other entries, Send/Submit button shows/overlaps in between other entries.
2. "Enable enhanced user interface" doesn't work on Google Chrome.
LINK: http://bit.ly/rhuaRK
1. The button problem is because of a height set on line 1091 of your theme's style.css file
[css]
#content ul, #content ol {
font-family: Arial,Helvetica,Utkal,sans-serif;
font-size: 12px;
font-weight: bold;
height: 200px;
margin: 0;
padding: 0 0 15px;
text-transform: none;
}
if you remove the height value there the button displays properly. screenshot: http://bit.ly/ILVuxN
It's a theme style problem, not a Gravity Forms issue.
You can try to override that for your form list by adding this to the end of your theme stylesheet.
[css]
body .gform_wrapper ul,
body .gform_wrapper ol {
height: auto !important
}
2. The enhanced user interface does in fact work in Google Chrome - I'm not sure what problem you're referring to. - screenshot: http://bit.ly/KJyGLZ
1. Now works fine after making recommended changes.
2. Something might be wrong then with my browser. I'll recheck it and get back to you again whenever necessary!
I appreciate it. Thank you!
Okay, sounds good. Let us know if you find something else and we'll be happy to help out.