Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #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!

    #456185

    Hey Luc!

    Add this to your custom CSS.

    form.cart {
      overflow: visible !important;
      z-index: 100 !important;
    }

    Best regards,
    Elliott

    #456251

    Hello 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? alignment-checkout

    See checkout page:
    http://www.boosty.nl.alvast-online.nl/afrekenen/

    Thanks in advance!

    #456445

    Hey!

    Please add this to Quick CSS as well:

    #billing_city_field {
    float: right !important;
    }

    Regards,
    Rikard

    #458297

    Thanks, 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!

    Accept terms line

    #458396

    Hi!

    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,
    Yigit

    #458442

    Thanks 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!

    #458859

    Hey!

    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!
    Andy

    #459200

    Hello 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!

    Screenshot iPhone6 checkout

    #460130

    Hi!

    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,
    Andy

    #460315

    Hi There Andy,

    This works fine for the checkbox of the terms but it messes up the checkbox from Ship to other address. See screenshot.

    screenshot checkout on mobile

    Thanks again in advance…

    #461754

    Hi!

    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,
    Andy

    #461806

    Thank 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.

    terms checkbox not visible

    Thanks.

    #461814

    Hi!

    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,
    Andy

    #461846
    This reply has been marked as private.
    #461867

    Hey!

    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,
    Andy

    #461894

    Hey there, Andy,

    Thanks for your fast support. Too bad is does not look good on the desktop now, please see screenshot.

    desktop terms

    #461953

    Hi!

    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,
    Andy

    #461959

    Hi 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!

    #461992

    Hi!

    glad you are happy now. Let us know in a new ticket if you need help again with the theme.

    Regards,
    Andy

Viewing 20 posts - 1 through 20 (of 20 total)
  • The topic ‘Woocommerce and Gravity Forms’ is closed to new replies.