Site logo

[Resolved] Image articles not displayed on mobile

Home Forums Support [Resolved] Image articles not displayed on mobile

Home Forums Support Image articles not displayed on mobile

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1530026
    Matthieu

    Hello,
    I am using generatepress / woocommerce.

    The images of my items in the cart are not showing on the phone.

    Is it possible to arrange this ? Thank you 😃

    #1530130
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    @media(max-width: 768px) {
    
        /* reduce space between cart title and content */
        .woocommerce-checkout .entry-content {
            margin-top: 0.5em;
        }
    
        /* Display thumbnail align right of remove button */
        .woocommerce-page table.cart .product-thumbnail {
            display: block !important;
        }
    
        .woocommerce-page table.cart .product-thumbnail:before {
            display: none;
        }
    
        .woocommerce-page table.cart .product-remove {
            float: left;
            border-bottom: 0;
        }
    }
    #1530188
    Matthieu

    It’s perfect ! Thanks

    #1530472
    David
    Staff
    Customer Support

    Glad to hear that

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.