Home Forums WoodMart support forum Version 7.3 stacked left and right column in checkout underneath each other

Version 7.3 stacked left and right column in checkout underneath each other

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #493333

    metuza
    Participant

    Hello,

    I did find an issue in checkout with latest version 7.3. Left and right column is stacked underneath each other just like in mobile.

    Brgds
    Rune

    #493366

    Bogdan Donovan
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    .woocommerce > .woocommerce-checkout {
    	display: flex;
    	align-items: flex-start;
    	flex-wrap: wrap;
    	column-gap: 30px;
    }
    
    .woocommerce > .woocommerce-checkout > *:not(:is(.customer-details, .checkout-order-review)) {
    	width: 100%;
    }
    
    .woocommerce > .woocommerce-checkout > *:not(:is(.customer-details, .checkout-order-review)) [role="alert"] {
    	margin-bottom: 30px;
    }

    This issue will also be fixed in the next update.

    Kind Regards

    #495417

    Pernilla
    Participant

    I have the same problem after updating, although I have installe 7.3.1 it does not display correctly. I have added the css code you are suggesting but it does not help.

    #495420

    Pernilla
    Participant

    Also, the cart widget does not work properly. Normally the page gets dark and you can see the cart widget on the right but now the page does not get dark.

    #495552

    Artem Temos
    Keymaster

    Hello,

    You need to remove the <strong> tag from the checkout page to fix this https://prnt.sc/DisI3rREhzGJ

    Kind Regards

    #495603

    Pernilla
    Participant

    Thank you, that worked 🙂

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