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

    Buon giorno,
    nel mio sito che allego qui sotto, se provi ad acquistare 2 dello stesso prodotto e poi vai nella pagina del carrello non viene visualizzata la quantità e quindi non puoi modificarla.
    Su desktop invece è tutto ok
    Come mai?
    grazie mille dell’aiuto

    #1419799

    Hi bassato,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
        #top .woocommerce-cart-form .shop_table.cart .cart_item {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item td:before {
            content: attr(data-title) ": ";
            font-weight: 700;
            float: left;
        }
        
        #top .woocommerce-cart-form thead,
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-remove:before {
            display: none;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-remove, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-name, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-price, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-quantity {
            display: block;
            width: 100%;
            padding: 12px 20px;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-name, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-price, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-quantity {
            text-align: right;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-name .component-name {
            max-width: 220px;
            margin-left: auto;
            padding-left: 0;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-name .component-name * {
            float: right;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-quantity .quantity {
            width: 170px;
            margin-right: 0;
        }
    }

    Please let us know if it helps.

    Best regards,
    Nikko

    #1419835

    Perfetto!
    grazie mille Nikko!

    #1419969

    Hi bassato,

    We’re glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘visualizzazione pagina carrello su mobile errata’ is closed to new replies.