Hi all!
Has anyone cracked how to make pages full width in the new “Savor” theme?
Here are my pages that are not full width:
Thanks!!
Hi all!
Has anyone cracked how to make pages full width in the new “Savor” theme?
Here are my pages that are not full width:
Thanks!!
Hi @tommy6030,
Please go to Actions > Edit code > Sections > main-page.liquid file and change code:
page-width-content
=>
page-width
Refer:
If I helped you, then a Like would be truly appreciated.
Do not edit theme code, it will make future updates difficult!
Go to this section settings and paste this into “Custom CSS”:
.section {
--normal-content-width: 100%;
}
Setting CSS variable used in theme will make theme logic still valid.
Simply overriding max-width will break it because internally, the theme code will still “think” that your page content is narrow.
Hello @tommy6030
You can do this via Theme Customizer > Theme Settings > Custom CSS
.page-width-wide .page-width-content {
–page-content-width: calc(100% - 40px);
}
You all are amazing and thanks so much for helping me!