Can someone please help me with a snippet of css that I can put on each section of my theme, to be able to change the max width. It is too stretched out on big screens but I don’t want the whole website to have a max width because I have banners that look ok, but other sections do not.
My theme is Archetype fetch theme
www.littlelovesstore.com
You can try to use this code and change the max-width to your desired pixel width
.page-width {
max-width: 1200px;
}
Hi @ashashash
I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.
Please add this css in your bottom of the theme.css file:
.page-width {max-width: 1200px !important;}
Note: You can change the width yourself.
Regards,
San
Thank you, that worked for all my sections, and kept the banners wide. Is there any way to keep the header bar full width?
You can add the following code immediately after the code you already inserted
#HeaderWrapper .page-width {
max-width: 1500px !important;
}