Thu, 2017-08-24 20:43
Hi,
Im looking at removing an image from templated page using a piece of CSS but cant seen to figure out what CSS to use.
The page is https://magnetstore.co.uk/cart/
and i want to remove the large product image covering the main view of the page
Limited experience and a digital marketing manager.
I found a post using the following code
.woocommerce-cart td.product-thumbnail {
display: none;
}
@media (max-width: 767px){
.woocommerce .cart.shop_table .product-name {
display: block !important;
}
}
but this will remove the thumbnail at the bottom and I cant figure out how to change this to the large image
Fri, 2017-08-25 17:06
#1
Unable to replicate
There is no large image (when I add a magnet to the cart). There is this text on the cart page:
.woocommerce-cart td.product-thumbnail { display: none; } @media (max-width: 767px){ .woocommerce .cart.shop_table .product-name { display: block !important; } }
That implies that you added the "fix" to your html instead of to the proper css file.
gary