I am using the Palo Alto theme, but unlike all of the other blocks, the “Header” and the “Collections” page both default to Full Width and there is no way to select these to be “Page Width” instead. Is there an easy solution? Thank you.
Hi @modernout
Do you mean full width? Your store already on the max-width: but the width is assign to 1440px;
Do you mean like this?
The remining is padding in both left and right. If this what you mean check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.wrapper {
max-width: 100%;
width: 100%;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
I am speaking about how to make the header and the collections page more narrow to “page width” which I am assuming is 1440. For larger screens, it’s full width.
Here are screen shots:
Oh, i see check this one out.
Same instruction.
@media only screen and (min-width: 1440px) {
header#SiteHeader .wrapper {
width: 1440px;
}
.collection__wrapper, .collection__inner {
width: 1403px;
margin: auto;
}
.collection__wrapper .wrapper--full-padded {
padding: 0;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Spot on! Thank you so much!

