For some weird reason my text is showing up weird on only a few of the fields on my form. The time field and check box fields.
For some weird reason my text is showing up weird on only a few of the fields on my form. The time field and check box fields.
The page URL you included isn't working for me so i'm unable to look at the form.
But if text is turning up weird it could be some sort of conflict. Possibly javascript that is manipulating the output.
http://www.qwertytech.net/contact-us/service-quote/ is the URL
The labels are inheriting a block property from the style.css file on line 675. When I disabled that, they displayed correctly.
you can append this to the bottom of your style.css file and it should correct the issue.
.gform_wrapper .gfield_checkbox label, .gform_wrapper .gfield_radio label {
display:inline !important;
}
Okay. That fixed my checkbox list but not the subtext under my time. Its the HH : MM that is not showing right still.
Not seeing it. What browser are you seeing the problem in? I've checked firefox, safari, chrome (Mac) and it looks fine.
In FF 3.0.18 on Linux it looks messed up. Not sure what it's supposed to be, but I'd guess it's not supposed to look like this:
http://chrishajer.com/gravity/HH-MM.png
Maybe the colon is supposed to be between the HH and the MM input fields?
It's inheriting some extra padding from the style.css file on line 683. That's throwing the widths off in some places. Try appending this to the end of the stylesheet.
.gform_wrapper input {padding:5px 4px !important;}
It worked in my test (Firefox 3.6.3 Win)
After putting the above code into my css it worked. Thank you very much.
Thanks for the update. I'm pleased I could help.