Shopify themes, liquid, logos, and UX
Someone I was talking to about responsiveness problems in my company said this
"Upon reviewing your website, we identified that the large image display issue is related to a responsive design problem in your theme. Specifically:
The page allows horizontal scrolling, creating blank space on the left side of the screen.
This occurs because the maximum width exceeds the mobile viewport size, leading to overflow.
As a result, the things appear outside the visible area.
We recommend addressing the layout overflow issue to improve responsiveness "
I need help addressing this please, thank you
Hi @starpaint,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.
html, body {
overflow-x: hidden;
max-width: 100%;
}
.container, .wrapper, .page-width {
max-width: 100vw !important;
overflow-x: hidden !important;
}
this added strange response in the desktop, there became a sliding bar in the description section and the page load was strange
Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025