Hi,
On multiple mobile device i am encountering an issue in that the product description and image is being removed from the cart page.
any help you can offer in fixing this issue is greatly appreciated.
thanks,
Brent
Hi,
On multiple mobile device i am encountering an issue in that the product description and image is being removed from the cart page.
any help you can offer in fixing this issue is greatly appreciated.
thanks,
Brent
Hello Brent,
Thanks for writing in!
In smaller screens, the product names were hidden. Only the thumb, quantity and price will show up. To display the product name again, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
@media (max-width: 767px){
.woocommerce .cart.shop_table .product-name {
display: block;
}
.woocommerce .cart.shop_table .product-thumbnail {
min-width: 35px;
max-width: 60px;
padding-left:0;
padding-right:0;
}
.woocommerce .cart.shop_table .product-thumbnail img {
width: 100%;
}
}
We would love to know if this has worked for you. Thank you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.