How do I add Contact page next to policies in footer Dawn theme?
Topic summary
A user seeks to add a Contact page link in the footer’s policy section of the Dawn theme.
Solution provided:
- Navigate to Online Store > Themes > Edit code
- Open
footer.liquidin the Sections folder - Insert custom HTML markup after line 316 (following
{% endif %}) - The code snippet adds a “Contact Us” link using
<small>tags - Replace placeholder URL with actual contact page URL
Follow-up question:
The original poster asks how to add additional pages to the same footer section.
Response:
To add more links, create a new line and paste the same code structure for each additional page link needed.
Status: Solution accepted and marked as resolved.
Hi @Jayboogie23
-
From the Admin page, go to Online Store > Themes
-
Select the theme you want to edit, click the three dots to edit code
-
Under the Section folder, open the footer.liquid
-
Then place the code below at the very bottom of the file and SAVE
-
After the {% endif %} around line 316, make a new line and add the code below.
NOTE: Replace the text your_contact_url to your right contact page link. Then SAVE
- <small>Contact Us</small>
Check image for placement:
Result:
Please click ‘Like’ and mark it as ‘Solution’ if you find it helpful.
And if I need to add another page in that same footer after the contact page how do i do that? is it space then type your code again or?
If you mean adding another link. Yes, just create a line and paste the code I provided you

