I saw one answer on the forums, but i couoldnt get it to work. maybe i need a bit easier instructions. it said put a code in funtions.php file. but not sure if it meant for the woocommerce or child theme functions.php file.
IN my woocommerce shopping cart the thumbnails are a ridiculouslyu small 45×45 (or smaller)… I want them to show up to be at least 100×100.
(The original pic is 600×600.
How do I do that?
I would appreciate a fix…
Hey grivers99,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.woocommerce .cart.shop_table .product-thumbnail img {
width: 300px;
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi Gary,
Yes, they are hidden by design. You can add this code to make them visible again:
@media only screen and (max-width: 767px) {
.responsive table.shop_table .product-thumbnail {
display: block;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
VICTORIA,
You’re wonderful. thank you.
one more followup..but I think i asked this in another post — but have not received an answer yet..
I am using the woocommerce Local Pickup Plus Extension…and in the shopping cart the font is very small where it says:
This item is set for shipping. Click here to pickup this item. (which then gives them ability to switch to local pickup)
(I think the font there is 6pt.) Is there a way to make that font arger to 8pt or 10pt?
Gary