Cart page column widths

Hey,

For some reason the columns on the cart page are messed up. The first image column is very “long” and product names are short. When going to responsive mode, the product name disappears. Also it should be so that image goes away and product name stays.

Hi There,

I can see you have added the following custom CSS:

.woocommerce .cart.shop_table .product-thumbnail img {
    width: 20%; 
}

Please update that custom CSS to this instead:

.woocommerce .cart.shop_table .product-thumbnail img {
    max-width: 200px; /*Adjust this value accordingly*/
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.