Cart Section - Full Width

Good day!

For whatever reason a part of my cart is besides (on the right) of product selection on the desktop. How can I move it below similar to what it looks now on mobile or tablets?

Website : Flower Delivery Ottawa – Nectar Flowers Ottawa

What I want it to look like

Please please please. Thank you!!!

Hi @Carpinus ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

@media only screen and (min-width: 769px) {
    .cart__page-col:last-child {
        flex: 0 1 100% !important;
    }
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Hi @Carpinus

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file → Save

.cart__page {

flex-direction: column !important;

}

.cart__page-col {

width: 100% !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Hello @Carpinus

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>add this code at the bottom of the file.

.cart__page {
    flex-direction: column;
}
.cart__page-col {
    width: 100%;
}