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
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.
1 Like
Top, thank you very much
1 Like
No problem. Have a great day!


