How to add the menu links vertically in the left hand side of the footer ?
www.soothetech.shop
Thanks in advance
Do you have any reference site that you can share here? So, based on that we developers can provide you the solution code.
Hi @rubi06
In your Shopify Admin go to online store > themes > actions > edit code
Find Asset > base.css and paste this at the bottom of the file:
.footer__content-bottom-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.footer__menu ul,
.footer .list-unstyled {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
/* Ensure menu stays on the left */
.footer__menu {
text-align: left;
}
@media (max-width: 749px) {
.footer__content-bottom-wrapper {
flex-direction: column;
align-items: center;
text-align: center;
}
.footer__menu ul {
align-items: center;
}
}
