Hi everyone,
I’m currently forcing 4 products per row on desktop using custom CSS, which works perfectly. However, because of this, the Grid Layout Control in the theme settings no longer affects the layout on desktop.
Since the layout is now fixed, I’d prefer to hide the Grid Layout Control option for desktop in the theme editor to avoid confusion.
Does anyone know the best way to remove or hide the Grid Layout Control setting for desktop only, while keeping everything else working normally?
Any guidance would be greatly appreciated. Thanks!
URL: RUNWAY
CSS:
@media (min-width: 750px) {
.product-grid {
grid-template-columns: repeat(4, 1fr) !important;
}
}

