Viewing 3 replies - 1 through 3 (of 3 total)
  • I have the same problem here. It would be great if the cart can scroll when it has more then 7 items. By the way, people tend to not add too much to the cart ^^.

    +1

    Hi,
    I solved this issue adding some css in the last lines of style.css, located in /wp-content/plugins/woocommerce-cart-tab/assets/css/style.css:

    .woocommerce ul.cart_list, .woocommerce ul.product_list_widget, .woocommerce-page ul.cart_list, .woocommerce-page ul.product_list_widget
    {
    max-height: 400px; /* with those two css a scrollbar appears */
    overflow: auto; /* with those two css a scrollbar appears */
    }

    You can change max-height to fit your needs.
    Hope this could be useful!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘What if I had 10 items?’ is closed to new replies.