Hi! How can I align the footer menu and language selector (red box) to the right (green box)?
website: www.10xfuel.com
thank you!
A user seeks to align their footer menu and language selector to the right side of their Shopify Dawn theme store. Multiple developers have provided CSS solutions to add to the base.css file.
Proposed Solutions:
float: right and text-align: right with flexbox direction adjustmentstext-align: end and justify-content: end propertiesalign-items: endCurrent Status:
The issue remains partially unresolved. The user reports that the language selector moved successfully, but the menu itself did not align to the right as intended. David_SHT indicated they would check further to troubleshoot the problem.
All solutions involve adding custom CSS code to the bottom of the base.css file through the theme editor.
Hi! How can I align the footer menu and language selector (red box) to the right (green box)?
website: www.10xfuel.com
thank you!
Hi @10xfuel
Please add this code to bottom of base.css in your Online store > Themes > Edit code
ul.footer-block__details-content { float: right !imporatant; text-align: right !important; }
.footer-block__details-content>li { margin-right: 0px !important; }
.footer__content-bottom-wrapper { flex-direction: column !important; }
.footer__localization { flex-direction: row-reverse !important; }
Hi @10xfuel ,
This is David at SalesHunterThemes.
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code.
Go Assets folder → base.css file.
Add this following code at the bottom of page.
.footer-block__details-content {
text-align: end !important;
}
.footer-block__details-content>li {
margin: 0 !important;
}
.footer__content-bottom-wrapper {
display: flex !important;
flex-direction: column !important;
}
.footer__column.footer__localization {
justify-content: end !important;
}
result:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
David | SalesHunterThemes team
Hi @10xfuel
I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.
Please add this css in your bottom of the base.css file:
.footer-block__details-content {display: flex !important; flex-direction: column !important; align-items: end !important;}
.footer__content-top {padding-bottom: 2rem !important;}
.footer__content-bottom {padding-top: 1rem !important;}
Regards,
San
Let me check