Hi, how do I align the text block (Contact section) in the footer to the right (Keeping the menu aligned to the left)?
Thanks
A user seeks to align a footer text block (Contact section) to the right while keeping the menu aligned left in the Dawn theme.
Initial Solution Attempt:
section-footer.css.footer__content-top .grid and .footer-block.grid__item propertiesjustify-content: space-between and max-width: 300pxProblem:
Revised Solution:
text-align: right to .footer-block.grid__item:last-childspace-between justification and 300px max-width constraintResolution:
Hi, how do I align the text block (Contact section) in the footer to the right (Keeping the menu aligned to the left)?
Thanks
Hi @dan_hoo ,
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-footer.css->paste below code at the bottom of the file:
@media screen and (min-width: 750px) {
.footer__content-top .grid {
justify-content: space-between !important;
}
.footer-block.grid__item {
max-width: 300px !important;
}
}
I hope it would help you
Best regards,
Richard | PageFly
Hi @PageFly-Richard ,
This solution simply pushed the blocks further apart.
Are you able to provide a solution that keeps the foot menu on the left and the contact block on the right - see below:
Thanks
Hi @dan_hoo ,
I’m sorry to hear that. Please give it a try with this new solution:
You can replace previous my code by below code:
@media screen and (min-width: 750px) {
.footer__content-top .grid {
justify-content: space-between !important;
}
.footer-block.grid__item {
max-width: 300px !important;
}
.footer-block.grid__item:last-child {
text-align: right !important;
}
}
I hope it would help you
Best regards,
Richard | PageFly
Thanks @PageFly-Richard