Hi everyone, how can I make products full width on collection pages? On the home page I see the products full width but not on the collection pages. Do you know how to do this only on desktop? Thanks a lot to everyone
Topic summary
Goal: Make products display full-width on collection pages, desktop only, in a Shopify store.
Proposed fix: Edit the themeβs CSS. Go to Online Store β Themes β Edit code β Assets β base.css and append a desktop-only media query.
Code change: Use @media screen and (min-width: 990px) targeting .collection.page-width to remove max-width and reduce side padding.
- Example: .collection.page-width { padding: 0 1.5rem !important; max-width: none !important; }
- The media query confines the change to desktop, leaving mobile unaffected.
Evidence: Before/after screenshots were shared to illustrate the full-width result on collection pages.
Outcome: The original poster confirmed the solution works. No further issues or disagreements were raised; the thread is resolved.
Hi @Marco211 , you can make products full width on collection page by following these steps:
- Navigate to Online store => Themes => Edit code
- Find base.css file on Assets folder and add this code to the end of the file :
@media screen and (min-width: 990px) {
.collection.page-width {
padding: 0 1.5rem !important;
max-width: none !important;
}
}
And here is the result :
Hope this can help you.
Top, thank you very much
No problem. Have a great day!


