Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #985360

    Can the images in the cart be made larger?

    familyrich.com

    #985742

    Hey BeyondMS,
    Please try this code in the General Styling > Quick CSS field:

    #top.woocommerce-cart table.cart img {
        width: 180px !important; 
    }

    Please adjust to suit

    Best regards,
    Mike

    #987144

    Hey, Mike!

    Thanks for taking the time to respond. The code you suggested made no changes to the size of the images in the cart.

    #987252

    Hi,
    Please try the same code in WordPress > Customize > Additional CSS
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #987489

    Mike,
    For future or other readers of this thread, it’s under APPEARANCE > CUSTOMIZE > ADDITIONAL CSS

    This worked, Mike for the desktop version. BUT On the Mobile version, there is no image that comes up at all. Is there a way to get the image of the product to not get blocked off the mobile version?

    #987669

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 479px) {
    .responsive table.shop_table.cart .product-thumbnail {
        display: block !important; 
        width: 180px !important; 
    }
    }
    @media only screen and (max-width: 767px) {
    .responsive table.shop_table .product-thumbnail {
        display: block !important; 
        width: 180px !important; 
    }
    }

    Please adjust image width to suit.

    Best regards,
    Mike

    #987920

    Mike, that worked. Thanks!

    #988019

    Hi,

    I’m glad you were able to get this resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Changing the size of the product images in the checkout page’ is closed to new replies.