Shopify themes, liquid, logos, and UX
Hi
Im having an issue with changing the background color behind the footer menu
The usual color selector is not letting me change the colour behind the footer menu. and I want to change that White behind the menu so im looking to edit the code. if you could help me in finding the file that has that CSS code
wilfreds.shop
Solved! Go to the solution
This is an accepted solution.
Hey @tim_wilfreds,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
body footer {
background-color: #789276 !important;
margin: 0 !important;
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
Hello @tim_wilfreds
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>
footer {
margin: unset !important;
background: #789276 !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.
Hey @tim_wilfreds,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
body footer {
background-color: #789276 !important;
margin: 0 !important;
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
Check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
div#shopify-section-footer {
background: #789276;
}
And Save.
Result:
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025