Home Forums WoodMart support forum css style problem on checkout page

css style problem on checkout page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #73843

    annachi
    Participant

    Hello sir,

    Can you help me to find a solution for css on checkout page, please.

    go here: https://annachi.fr/commande

    i want to strech the input (look at attached picture) upto full size of table.

    Thanks

    Attachments:
    You must be logged in to view attached files.
    #73845

    annachi
    Participant

    sorry, here is the link of checkout page: https://annachi.fr/checkout

    #73852

    WebMpt
    Participant

    This css snippet work, but you must check the responsive before.

    .woocommerce-additional-fields {
    width: 200%;
    }

    Bye

    #73884

    Artem Temos
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings

    .woocommerce-checkout-review-order-table table,
    .woocommerce-checkout-review-order-table tr,
    .woocommerce-checkout-review-order-table thead,
    .woocommerce-checkout-review-order-table tbody,
    .woocommerce-checkout-review-order-table tfoot {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-flex: 1;
            -ms-flex: 1 1 100%;
                flex: 1 1 100%;
    }
    .woocommerce-checkout-review-order-table tfoot tr:not(.cart-subtotal):not(.order-total) td {
        max-width: 100%;
    }
Viewing 4 posts - 1 through 4 (of 4 total)