Shopify themes, liquid, logos, and UX
Hi,
The collections page width on mobile is too wide. This causes a scrollbar to appear when you swipe slightly left on the collections page. Resulting in a blank section with a weird line on the right side of the screen.
Store: arterclo.com
pass: yaifra
Prestige Theme
I have attached an image of what the blank space looks like.
Solved! Go to the solution
This is an accepted solution.
Hi @Streccent
You can follow the instruction here :
1. Go to Shopify > Theme > Customize > open Custom CSS
2. Copy and paste this code to the section > Save
@media screen and (max-width: 768px){
body {
overflow-x: hidden !important;
}
}
Hope it helps.
This is an accepted solution.
Hi @Streccent
You can follow the instruction here :
1. Go to Shopify > Theme > Customize > open Custom CSS
2. Copy and paste this code to the section > Save
@media screen and (max-width: 768px){
body {
overflow-x: hidden !important;
}
}
Hope it helps.
Works perfectly. Thanks
The filter toolbar in collection section is too wide.
It happens because someone has overridden original margins on container:
@media screen and (max-width: 750px){
.shopify-section--main-collection .container {
margin-left: 10px !important;
margin-right: 10px !important;
}
}
And filters container expects different margins on its parent.
So you need to compensate for this (in Custom CSS, of course):
@media screen and (max-width: 750px) {
.collection-toolbar.full-bleed {
margin: 0 -10px;
}
}
One needs to be careful when setting overflow: hidden; on body -- if there are sticky elements on the page, they may stop functioning.
Thanks!
Hey Community! As we jump into 2025, we want to give a big shout-out to all of you wh...
By JasonH Jan 7, 2025Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024