Hello, as you can see in the picture there’s that small gap at the end of my product grids and i can’t seem to find the reason. i wanted it to be completely full width. i appreciate any help, thanks ![]()
Hello,
Please share “Store URL”
Thanks!
Hello, @someone1921
- Go to Online Store
- Edit Code
- Find theme.css/base.css file
- Add the following code in the bottom
.product-grid li {
max-width: 100% !important;
}
Thanks!
it kinda solves the problem but the layout “bounces” on mobile so i don’t think that’s the best solution… thank you anyways!
try this one @someone1921
@media (max-width: 768px) {
.product-grid li {
max-width: 100% !important;
}
}
Thanks!
