Home Forums Basel support forum Checkout Fields

Checkout Fields

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #162551

    fabioweb
    Participant

    Hello is it possible to display all checkout fields in 2 columns like name and surname?
    https://ibb.co/T2MhTK2
    Thanks

    #162749

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Desktop:

    .woocommerce-billing-fields__field-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        margin-left: -10px;
        margin-right: -10px;
    }
    .woocommerce-billing-fields__field-wrapper > p {
        flex-basis: 50%;
        width: auto;
        min-width: 50%;
        flex-grow: 1;
        padding-left: 10px;
        padding-right: 10px;
    }

    Best Regards

Viewing 2 posts - 1 through 2 (of 2 total)