I want to move the “Powered by Shopify” text in the footer of my Veena Theme from the left side to the center, so it is horizontally aligned in the middle of the page.
I have tried:
.footer__content {
text-align: center;
}
But it does not work
A user wants to center the “Powered by Shopify” text in the footer of their Veena theme, which currently appears left-aligned. Their initial CSS attempt using text-align: center on .footer__content was unsuccessful.
Proposed Solutions:
Multiple community members requested the store URL to provide specific guidance. After receiving the link, two different CSS solutions were offered:
LizHoang’s approach: Add code to base.css targeting .footer__column.footer_bottom_copyright with text-align: end !important;
Dan-From-Ryviu’s approach: Modify .footer__content-bottom-wrapper in base.css using flex-direction: column and text-align: center, plus centering payment icons with justify-content: center
One responder also referenced the Dawn theme as an example, suggesting justify-content: center on the footer wrapper, though theme-specific differences may require adjustments.
Status: The discussion remains open with no confirmation of which solution worked.
I want to move the “Powered by Shopify” text in the footer of my Veena Theme from the left side to the center, so it is horizontally aligned in the middle of the page.
I have tried:
.footer__content {
text-align: center;
}
But it does not work
Hi @cancase
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.
Hi @cancase
There may be differences in each theme, so I will use the ‘dawn’ theme and modify it as shown in the following picture.
justify-content: center;
.footer__content-bottom-wrapper {
display: flex;
width: 100%;
justify-content: center;
}
Hi @cancase
Could you share the link of your store?
Hi, Can you share store URL?
Hi @cancase
.footer__column.footer_bottom_copyright {
text-align: end !important;
}
Result:
Best,
Liz
Please add this code to the end of the base.css file
.footer__content-bottom-wrapper {
flex-direction: column;
text-align: center;
}
.footer__content-bottom-wrapper .list-payment {
justify-content: center !important;
}