Atelier theme - hide grid layout control on desktop only

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;
}
}

Hi @runwayfashion

I cannot see the grid layout control right now.

please this would be great?

Ive returned it. Check now

Runway

Please add this code to Custom CSS in Theme settings

@media (min-width: 750px) {
.facets .column-options-wrapper {
    display: none !important;
}
}

HI thank you this worked!