Dawn Theme Footer is right aligned but the links are not flush right.

Topic summary

A user encountered an alignment issue in the Dawn theme footer where right-aligned text wasn’t displaying correctly—only the “Testimonials” link aligned properly with “For Retailers” while other links remained misaligned.

Initial Approach:

  • Applied CSS to right-align the footer block using text-align: right !important on .footer-block.grid__item:last-child
  • This partially worked but didn’t achieve full alignment

Solution Provided:
A PageFly representative suggested adding:

.footer-block__details-content > li:not(:last-child) {
  margin-right: 0 !important;
  text-align: right;
}

Outcome:
The solution worked perfectly, resolving the alignment issue. The discussion is now closed with the problem successfully fixed.

Summarized with AI on November 22. AI used: claude-sonnet-4-5-20250929.

Hello,

I am working on the footer in the Dawn theme. We wanted to right justify the text in the right footer box. I found the code and applied it. But it didn’t align properly, see the below screen shot. Only the “Testimonials” link aligns with the “For Retailers”. Any help would be much appreciated.

Here’s the code I added to right justify that box:
.footer-block.grid__item:last-child {
text-align: right !important;
}

Thanks,

Ben

Hi @remarkspuzzles ,

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
You can use below code:

.footer-block.grid__item:last-child {
    text-align: right !important;
}
.footer-block__details-content>li:not(:last-child) {
    margin-right: 0 !important;
}

I hope it would help you
Best regards,

Richard | PageFly

1 Like

Thank you Richard! This worked perfectly.