Footer text to center - powerered by shopify - VEENA Theme

Topic summary

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:

  1. LizHoang’s approach: Add code to base.css targeting .footer__column.footer_bottom_copyright with text-align: end !important;

  2. 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.

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

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?

https://rlxts9cesu0b72n9-64361300123.shopifypreview.com

https://rlxts9cesu0b72n9-64361300123.shopifypreview.com

url

url is : https://rlxts9cesu0b72n9-64361300123.shopifypreview.com

Hi @cancase

  • You can try to follow this step
    Step 1: Go to Edit code
    Step 2: Find file base.css and add this code at the end of the file
.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;
}