I would like to add an additional menu at the bottom of our website, under where the social icons are. Full width, menu items centered. Using the Dawn theme. Any help is appreciated!
Topic summary
A user wants to add a full-width, centered menu below the social icons in their Dawn theme footer.
Solution provided:
-
Edit theme code: Navigate to Online Store > Themes > Edit Code, then open
footer.liquidunder Sections -
Insert menu code: Locate the social icons section (typically under
<div class="footer__content">) and add the provided HTML markup below it -
Style the menu: Open
base.css(ortheme.css) and add the CSS code to achieve full-width, centered styling with inline list items -
Create the menu: In Shopify Admin, go to Navigation > Add a new menu, name it “Footer Menu”, and add desired links
-
Link the menu: Replace
footer-menuin thefooter.liquidcode with the actual handle of the newly created menu
The solution involves both liquid template editing and CSS styling to achieve the desired layout.
You can add an additional menu at the bottom of your website in the Dawn theme by editing the footer section in your theme code.
Here’s how you can do it:
Steps:
- Go to Online Store > Themes > Edit Code
- Open footer.liquid (found under Sections)
- Find the section where the social icons are displayed (usually under )
- Add this code below the social icons section:
- Add CSS to Make It Full-Width & Centered
Open base.css (or theme.css in older versions) and add:
.custom-footer-menu {
width: 100%;
text-align: center;
margin-top: 20px;
}
.custom-footer-menu ul {
list-style: none;
padding: 0;
}
.custom-footer-menu li {
display: inline-block;
margin: 0 15px;
}
.custom-footer-menu a {
text-decoration: none;
color: inherit;
font-weight: 600;
}
-
Create a Footer Menu in Shopify Admin
Go to Navigation > Add a new menu
Name it Footer Menu
Add your links -
In footer.liquid, replace footer-menu with the actual handle of your new menu