Re: How to make Header and Collections page "Page Width" in Palo Alto theme

Solved

How to make Header and Collections page "Page Width" in Palo Alto theme

modernout
Tourist
5 0 1

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.

 

www.modernout.com

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
8313 1996 2454

This is an accepted solution.

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:

Made4uoRibe_0-1725562665484.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 5 (5)

Made4uo-Ribe
Shopify Partner
8313 1996 2454

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? 

Made4uoRibe_0-1725557245184.png

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!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
modernout
Tourist
5 0 1

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.

modernout
Tourist
5 0 1
Made4uo-Ribe
Shopify Partner
8313 1996 2454

This is an accepted solution.

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:

Made4uoRibe_0-1725562665484.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
modernout
Tourist
5 0 1

Spot on! Thank you so much!