Site logo

Archived topic

Move cross sale on cart page

3 replies · Started by Pedro on December 11, 2019

Viewing posts 1–4 of 4

Hello! I would like to move the cross sales shown on the cart page.

Only in the mobile version.

Since by default, WooCommerce shows them before the cart summary.

I would like these cross-sales to be displayed below the cart summary and the checkout button.

Can you help me?

Thank you!

Hi there,

try this CSS:

@media (max-width: 768px) {
    .woocommerce-cart .cart-collaterals {
        display: flex;
        flex-direction: column-reverse;
    }
}

Wow David! You are a wizard, it worked perfectly.

Thank you!

Glad to be of help

This archived topic is closed to new replies.