Tagged: gravity forms, woocommerce
-
AuthorPosts
-
June 6, 2015 at 11:40 pm #455541
Hi There,
I’m having trouble with enfold and a configurable product, powered by Gravity forms. Somehow the div the form is loaded in is too small. Can’t seem to fix it. It’s a product you configure in four steps but in the steps you can drop down a selection, it can’t show the options. Please check the link.
Thanks in advance!
June 8, 2015 at 4:43 pm #456185Hey Luc!
Add this to your custom CSS.
form.cart { overflow: visible !important; z-index: 100 !important; }
Best regards,
ElliottJune 8, 2015 at 5:45 pm #456251Hello Elliot,
Thanks, that does the trick. I only have one problem left in my cart and that is the fields on the checkout page. They are messed up. Can you please advise again?
See checkout page:
http://www.boosty.nl.alvast-online.nl/afrekenen/Thanks in advance!
June 9, 2015 at 6:24 am #456445Hey!
Please add this to Quick CSS as well:
#billing_city_field { float: right !important; }
Regards,
RikardJune 12, 2015 at 11:52 am #458297Thanks, all fixed now. I only have one question left (well, for now of course…).
When on the final step of ordering a customer needs to accept our terms by checking a box. Now this is presented a bit floating on the right after the submit button (see screenshot). Can I manage to bring it with CSS, before the button? So a line with the checkbox and on a new line the submit button?
Thanks again!
June 12, 2015 at 3:13 pm #458396Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#top .form-row .input-checkbox { position: relative; right: 380px; } p.form-row.terms { margin-top: -30px!important; }
Regards,
YigitJune 12, 2015 at 4:06 pm #458442Thanks for the fast reply. I’ve added the styles and it looks a bit better now. But is doesn’t on the phone. Text is over the order button. How to fix this?
It is not possible to get the line with the checkbox BEFORE the Submit button? Seems so much more logical…
Thanks!
June 13, 2015 at 10:39 pm #458859Hey!
which phone? and which text over the order button? please provide us screenshots.
For checkbox and submit button use this code:
p.form-row.terms { float: left; margin-left: -118px !important; padding-top: 15px !important; } input#place_order { float: left !important; margin-top: 16px !important; margin-bottom: 15px !important; }
Hope this helps.
Cheers!
AndyJune 15, 2015 at 10:12 am #459200Hello Andy,
Almost there, by adding your styles to the quick CSS it is now ok on desktop! Thanks for that. However on mobile it is not ok, I’ve included a screenshot of my mobile (iphone6).
Thanks in advance!
June 16, 2015 at 4:29 pm #460130Hi!
use this for mobile:
@media only screen and (max-device-width: 767px) { input#terms { top: -77px; right: 259px !important; } label.checkbox { margin-left: 75px; margin-top: -75px !important; float: left; }}
and adjust as needed.
Regards,
AndyJune 16, 2015 at 7:34 pm #460315Hi There Andy,
This works fine for the checkbox of the terms but it messes up the checkbox from Ship to other address. See screenshot.
Thanks again in advance…
June 19, 2015 at 9:36 am #461754Hi!
please remove this part of my code from above (inside media querries):
label.checkbox { margin-left: 75px; margin-top: -75px !important; float: left; }
also remove this code (inside media querries):
p.form-row.terms { float: left; margin-left: -118px !important; margin-top: 15px !important; }
Instead just put this code into your Quick CSS:
@media only screen and (max-device-width: 767px) { input#terms { top: -21px !important; }}
This should fix it I think.
Best regards,
AndyJune 19, 2015 at 11:50 am #461806Thank Andy but not quite there…
I’ve changed the custom css like you said and this is in there now:
#top .title_container .container, stretch_full container_wrap alternate_color dark_bg_color title_container, .alternate_color { background: -webkit-linear-gradient(#e55c00, #ff7c24); background: -o-linear-gradient(#e55c00, #ff7c24); background: -moz-linear-gradient(#e55c00, #ff7c24); background: linear-gradient(#e55c00, #ff7c24); } .alternate_color .breadcrumb, .alternate_color .breadcrumb a, #top .alternate_color.title_container .main-title, #top .alternate_color.title_container .main-title a {color: #FFFFFF !important} @media only screen and (max-width: 767px) { .responsive #top #main .container_wrap:first-child { background: -webkit-linear-gradient(#e55c00, #ff7c24); background: -o-linear-gradient(#e55c00, #ff7c24); background: -moz-linear-gradient(#e55c00, #ff7c24); background: linear-gradient(#e55c00, #ff7c24); }} .page-thumb img { display: none;} .logo, .logo a { overflow: visible !important; height: 110%;} form.cart { overflow: visible !important; z-index: 100 !important; } #billing_city_field, #shipping_city_field { float: right !important; } @media only screen and (max-width: 767px) { .responsive .title_container .breadcrumb { font-size: 16px; line-height: 28px; }} p.form-row.terms { float: left; margin-left: -118px !important; padding-top: 15px !important; } input#place_order { float: left !important; margin-top: 16px !important; margin-bottom: 15px !important; } #top .form-row .input-checkbox { position: relative; right: 380px; } /* p.form-row.terms { margin-top: -30px!important; } */ @media only screen and (max-device-width: 767px) { input#terms { top: -21px !important; }}
But somehow it still looks messed up on the mobiel checkout, can’t finish the process cause the checkbox is mandatory to complete the order. Please help as we need to go live with this site.
Thanks.
June 19, 2015 at 12:03 pm #461814Hi!
can you please create an admin account for us? post login details here as private reply. I think it would be easier to find the right code for you.
Best regards,
AndyJune 19, 2015 at 1:18 pm #461846This reply has been marked as private.June 19, 2015 at 1:57 pm #461867Hey!
I implemented this code into you Quick CSS:
#top #payment .terms { position: relative; right: -123px; top: -114px; text-align: left; padding-right: 115px; } #top .form-row .input-checkbox { position: relative; right: 114px; }
and now it looks good to me.
Hope you are happy :).
Best regards,
AndyJune 19, 2015 at 2:15 pm #461894Hey there, Andy,
Thanks for your fast support. Too bad is does not look good on the desktop now, please see screenshot.
June 19, 2015 at 3:01 pm #461953Hi!
ok, I think you owe me a beer :)
This is the code I have implemented:@media only screen and (max-device-width: 736px) { #top #payment .terms { position: relative; right: -123px; top: -114px !important; text-align: left; padding-right: 115px; } #top .form-row .input-checkbox { position: relative; right: 111px !important; top: -21px !important; }} #top #payment .terms { top: -26px; position: relative; } #top .form-row .input-checkbox { position: relative; right: 379px; }
and now it looks beautiful to me on desktop and mobile.
Best regards,
AndyJune 19, 2015 at 3:07 pm #461959Hi Andy,
Thanks for your support, looks beautiful!
I’d love to buy you a beer, whenever you’re in Amsterdam, I’ll buy you a big one!
June 19, 2015 at 3:40 pm #461992Hi!
glad you are happy now. Let us know in a new ticket if you need help again with the theme.
Regards,
Andy -
AuthorPosts
- The topic ‘Woocommerce and Gravity Forms’ is closed to new replies.