Shopify themes, liquid, logos, and UX
My website is www.sweatfree.co
The password is sweatfree123
I was able to find a way to make announcement bar full width, but I am not able to make the footer full width. If you could please advise!
Thank you!
Solved! Go to the solution
This is an accepted solution.
Hello @SweatFree
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 750px) {
#shopify-section-sections--14927607169106__footer .page-width {
max-width: 100% !important;
}
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
This is an accepted solution.
Hello @SweatFree
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (min-width: 750px) {
#shopify-section-sections--14927607169106__footer .page-width {
max-width: 100% !important;
}
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Thank you, @niraj_patel!
Hello @SweatFree ,
1. For Newsletter fullwidth, add some css in theme.liquid file before </head> tag.
<style>
.newsletter__wrapper {
padding-left: 0;
padding-right: 0;
}
</style>
2. and for footer fullwidth, you need to remove page-width class from footer file.
Hello @SweatFree
Go to online store ---------> themes --------------> actions ------> edit code------->base.css ----> line number 77
search this code
.page-width {
max-width: var(--page-width);
margin: 0 auto;
padding: 0 1.5rem;
}
and replace with this code
.page-width {
margin: 0 auto;
padding: 0 1.5rem;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025