Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1249773

    Hi guys

    The credit card area on mobile is cut off at checkout. I am on an Iphone 8. Here’s a screenshot: https://imgur.com/a/vbFZDFZ

    I do have some CSS that you gave me last year to resolve this, but it seems to have stopped working. Could you suggest a fix for me?

    Thank you!

    Jon

    #1250226

    Hey Jon,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    #top #payment div.form-row {
        padding: 0;
    }
    }

    Best regards,
    Rikard

    #1250634

    Hi Rikard
    Almost there – it still cuts off some of the credit card number field. See screenshot here: https://imgur.com/a/vAjJzEN
    Jon

    #1251018

    Hi Jon,

    We can’t target the font size of those fields with CSS, since they are added as iframes. We can target everything outside of the fields though, but I’m not sure exactly what you would like to reduce or remove. Please try to specify that a bit further so that we can give you some custom CSS to use.

    Best regards,
    Rikard

    #1251175

    Hi Rikard
    It’s whatever you suggest really – I’m on an iPhone 8 and when I enter the credit card number it cuts off the last digit, so the consumer may be confused or think that they haven’t entered the number entirely. Is it possible to make the credit card field frame slightly wider? I’m having this issue on two sites that I’ve built with Enfold… perhaps it’s just the iPhone 8 being too narrow?
    Jon

    #1251599

    Hi,

    Thanks for the update. Please try this CSS as well:

    @media only screen and (max-width: 767px) {
    .woocommerce-checkout-payment {
        border-width: 0;
        background-color: transparent;
    }
    
    #payment ul.payment_methods {
        padding: 1px;
    }
    }

    It should remove that containing element which doesn’t really do anything anyway.

    Best regards,
    Rikard

    #1258745

    Hi Rikard
    Thanks for the code… still having issues man… anything else you can suggest? Here’s a screenshot: https://imgur.com/a/lrL1kX3
    Jon

    #1259009

    Hi,

    Please try this instead:

    @media only screen and (max-width: 767px) {
    .woocommerce-checkout-payment {
        border-width: 0 !important;
        background-color: transparent !important;
    }
    
    #payment ul.payment_methods {
        padding: 1px !important;
    }
    }

    Best regards,
    Rikard

    #1268693

    Hi there, just thought I’d bump this post— I’m also experiencing this issue with my Enfold sites.

    #1268811

    Hi droofin,

    Please open a new ticket for your problem. Provide us admin access to have a deeper look into the issue, as well as precise links where we can see the issue. Screenshots highlighting what’s going on would help a lot (imgur.com, dropbox).

    Best regards,
    Victoria

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.