Viewing 1 replies (of 1 total)
  • Plugin Author bhavik.kiri

    (@bhavikkiri)

    Hi @smalt,

    Yes, you can align the items using CSS. I have tried 1 sample code on your site which shows the items as per your requirement.

    Kindly check the screenshot: https://tinyurl.com/yt8d55n8

    .woocommerce-checkout-review-order-table td.product-name {
        display: flex;
        flex-direction: row;
        /* justify-content: center; */
        align-items: center;
    }
    
    .woocommerce-checkout-review-order-table a.remove {
        order: 1;
        margin-right: 5px;
    }
    
    .woocommerce-checkout-review-order-table .quantity {
        order: 2;
        margin-right: 5px;
    }
    
    .woocommerce-checkout-review-order-table span.cqoc_product_name {
        order: 3;
    }

    Let me know the result

Viewing 1 replies (of 1 total)
  • The topic ‘Design checkout last step’ is closed to new replies.