Anybody know of a fix for the lines not showing up to the right on my form...
phone email last name ect.. are open ended
Anybody know of a fix for the lines not showing up to the right on my form...
phone email last name ect.. are open ended
line 1775 of your default.css file sets the form width to 580px. That's where the issue is coming from. You can reset it by adding this to the end to your theme stylesheet
body #contentbox #gform_wrapper_4 form {width:570px}
Hey Kevin , thanks.. I tried that but it did not close them.. for the heck of it I then moved it to 275 and it just shortened the fields and did not close them..
What is weird is that even one field on the left the email field is doing it.. but not street address or city.. or name...
The email and phone field have the css gf_left_half and gf_right_half styling if that helps any..
The extra padding on the inputs pushes the widths out further and ends up trimming them. Try adding this to your stylesheet
body #contentbox #gform_wrapper_4 form {width:570px; overflow:visible;}
body #contentbox #gform_wrapper_4 form input {padding:5px 0}
screenshot: http://grab.by/8ns4
Hey kevin thanks for your help but there must be something else blocking it... I added the code.. but still did not correct the problem.. http://webdesign.scottheliker.com/packages/get-estimate/
Where are you adding this? I don't see it being applied anywhere and the snippet should work just fine if applied correctly.
Bottom of my style sheet.. sorry took it out for a minute when I was trouble shooting something else..
http://i131.photobucket.com/albums/p291/scott7414/stylesheet.jpg Back in now see shot.
Having all sorts of crazy trouble today....
Issue with pricing field multiple selection here also..
http://forum.gravityhelp.com/topic/pricing-fields-check-box-selection-not-working-properly-see-screen-shot
Page form on http://webdesign.scottheliker.com/test-contact-form/
I wish someone had a video tutorial on Pulling cost and quantities from form fields to populate estimate for fresh books.. also.. Know of any??
@scott74 There aren't any tutorials for pulling cost and quantities from for fields to populate estimate for FreshBooks. The problem you are having is because you are trying to use Pricing Fields with the FreshBooks Add-On. The Pricing Fields are a 1.5 feature and 1.5 is still a development release. The FreshBooks Add-On has not been updated to support the new Pricing Fields and will not be updated until 1.5 is released as a final release.
@scott74 There aren't any tutorials for pulling cost and quantities from for fields to populate estimate for FreshBooks. The problem you are having is because you are trying to use Pricing Fields with the FreshBooks Add-On. The Pricing Fields are a 1.5 feature and 1.5 is still a development release. The FreshBooks Add-On has not been updated to support the new Pricing Fields and will not be updated until 1.5 is released as a final release.
Looked at your style.css file and you have a syntax error. You didn't properly close this rule.
selections {
background-color:#4D7DB3;
color: #FFF;
If you'll notice, the end bracket is missing. This breaks the rules after it. Fix that up and see if it works for you.
You can refer back to the other topic you referenced and we'll address the other issue there.
I closed it up but it didn't fix the dissappearing form field ends.. Not sure
Looking good for me -
firefox: http://grab.by/8oou
safari: http://grab.by/8ooA
chrome: http://grab.by/8ooF
Are you still not seeing it? If so, what browser and also, have you tried clearing your browser cache?
Is there a reason that it only took care of one page? Should there be a global setting in the css or something.. ? I have two other pages with forms on them that are still broken.
I guess that is why I did not notice the get estimate one being fixed...
http://webdesign.scottheliker.com/packages/maintenance-program/
http://webdesign.scottheliker.com/packages/questionnaire/
Thanks Scott
Yeah, it would help if were looking at the same form I guess. I was working on the one you originally referenced and yes, that CSS snippet was specific to that form ID. If you want it to apply to all forms, then you would use the class name for the form wrapper rather than the unique ID
body #contentbox .gform_wrapper form {width:570px; overflow:visible;}
body #contentbox .gform_wrapper form input {padding:5px 0}
This might be helpful for you as well. It's a guide to targeting specific form elements with CSS - examples to apply styles for all forms or for unique form ID's
http://www.rocketgenius.com/gravity-forms-css-targeting-specific-elements/
Nice Thanks....