Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi! I am struggling with changing my footer. I would like to place the newsletter on the right side of the footer and the "support" menu block on the left side of the footer. Is there any way to do this? Because right now they are on top of each other (see image). I am using the spotlight theme.
Solved! Go to the solution
This is an accepted solution.
Hello @Louver
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 .footer__content-top {
display: flex !important;
justify-content: space-between;
align-items: center;
}
</style>
This is an accepted solution.
Hello @Louver
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 ul.footer-block__details-content.list-unstyled {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
my solution worked then like & accept solution.
</style>
Hello @Louver
can you share store URL?
This is an accepted solution.
Hello @Louver
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 .footer__content-top {
display: flex !important;
justify-content: space-between;
align-items: center;
}
</style>
thank you so much! That worked!
Just 1 more question, in the menu block on the left it now shows "contact" and "FAQ" next to each other, is there also a way to show them on top of each other? Thanks in advance!
This is an accepted solution.
Hello @Louver
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 ul.footer-block__details-content.list-unstyled {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
my solution worked then like & accept solution.
</style>
yes it worked. amazing! Thank you so much!