Skip to main content
All CollectionsTroubleshooting
Cart Allows Left/Right Scrolling on Mobile
Cart Allows Left/Right Scrolling on Mobile

This article outlines how to fix a bug that allows UpCart contents to move left and right.

Updated today

Overview

On certain mobile devices, users might be able to scroll the UpCart horizontally, exposing an unintended white space on the right. This usually occurs when a child element within the cart exceeds the viewport width or disrupts the layout’s natural constraints, resulting in horizontal overflow.

CSS Solution

To prevent this behavior and keep the cart constrained to the viewport width, simply copy the code below and add it to the following directory:

Cart Editor > Settings > CSS

.upcart-cart-body
{
overflow-x: hidden !important;
}
Did this answer your question?