Hi would like to ask is it possible to change the positioning of my dawn theme footer from
This:
To this:
here’s my website link https://dissy-co.myshopify.com/?_ab=0&_fd=0&_sc=1
password: cheolt
A user seeks to reposition footer elements in Shopify’s Dawn theme, specifically moving the newsletter signup block from left-aligned to right-aligned alongside other footer content.
Multiple Solutions Provided:
base.css to adjust .footer-block--newsletter width and display properties</head> tag in the theme.liquid filebase.css and section-footer.css files with flexbox properties (display: flex, justify-content: space-between)Follow-up Request:
The original poster later asks how to center social media icons in the footer middle instead of positioning them on the right side.
GemPages responds with additional code to replace their previous solution, though the specific implementation details appear corrupted in the thread.
Status: The discussion remains ongoing as the user refines their layout requirements. All solutions involve custom CSS modifications to Dawn theme files.
Hi would like to ask is it possible to change the positioning of my dawn theme footer from
This:
To this:
here’s my website link https://dissy-co.myshopify.com/?_ab=0&_fd=0&_sc=1
password: cheolt
Hello There,
.footer-block--newsletter {
width: 50%;
margin-top: 0;
}
.footer__blocks-wrapper {
width: 50%;
}
.footer__content-top.page-width {
display: flex;
}
Hello @KelvinLeow ,
It’s GemPages support team and glad to support you today.
I would like to give you the recommendation to support you so kindly follow the steps below:
Open your theme.liquid theme file
Paste the below code before
For example,
If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team
Hi @KelvinLeow
Please follow these steps:
Navigate to Online Store > Themes > Edit code. Then find the file “base.css”, scroll down to the bottom and add these codes:
.footer .footer__content-top {
display: flex!important;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
Find the file “section-footer.css”, scroll down to the bottom and add these codes
.footer-block--newsletter {
margin-top: 0px!important
}
I hope that it works for you.
@GemPages Sorry for the trouble again, what if i want to make it in the middle instead?
Moving the social media icons to the middle of the footer instead of right side of the footer.
Hello @KelvinLeow ,
Let’s try adding this code before to replace my old code:
Best regards,
GemPages Support Team