Can't scroll mobile shopping cart on Flex theme: Any solutions?

Hello everyone,
I’m having a big problem displaying the responsive menu on our https://www.home-beddings-and-curtains.com/ site.

Our mobile shopping cart can’t scroll when there are several items in the cart. As soon as you have 4 or 5 items, it’s impossible to scroll and access the payment buttons.

Has anyone experienced this problem with the Flex theme?

Thanks in advance,

Add this code in your styles.css file:

#theme-ajax-cart {
  overflow-y: auto !important;
}

Result:

1 Like

Hi Max,

A solution can be to add a vertical scroll bad for the cart element. You can do so by adding the below CSS code at the end of your styles.css file.

@media (max-width:768px) {
div#theme-ajax-cart {
  overflow-y: auto !important;
}
}

Cheers!

1 Like