Site logo

Archived topic

Mobile not showing cart correctly

3 replies · Started by Matt on January 5, 2021

Viewing posts 1–4 of 4

Hi Matt,

I checked your code, and this CSS or setting from Woocommerce is the cause that cart table text/img align right on mobile.

media="only screen and (max-width: 768px)"
.woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
    display: block;
    text-align: right!important;
}

Try this CSS see if it can fix the issue.

@media (max-width: 768px){
    .vpc-cart-config .vpc-cart-options-container {
    text-align: left;
    }
}

Let me know :)

That fixed it! Thank you Ying!

No problem!
Glad to help :)

This archived topic is closed to new replies.