Prestige Theme: Center "Powered by Shopify" in footer

Topic summary

Goal: center the “Powered by Shopify” text in the Prestige theme footer.

What worked (confirmed by OP and others):

  • Edit code > Assets > your CSS file (theme.css/style.css/base.css, depending on theme).
  • Add CSS for the footer container: .Footer__Aside with justify-content: center and text-align: center. This centered the text for multiple users.

Earlier suggestions and notes:

  • .footer__aside { align-items: center } and .footer-powered-by { text-align: center } were suggested; file availability varied (no base.css/theme.scss.liquid for some).
  • Screenshots were shared showing successful centering.

Alternative (Prestige 10.4.0):

  • To remove the link entirely, open Assets > footer.liquid, search for {{ powered_by_link }}, and delete it.

Most recent update (for a case where earlier selectors didn’t work):

  • Add CSS targeting .footer__content-bottom-wrapper with justify-content: center !important; a screenshot showed the centered result.

Status:

  • Original request resolved. A later user’s case received a new selector-based fix; final confirmation from that user is pending. Key steps remain editing the correct CSS file and targeting the right footer container selector.
Summarized with AI on December 13. AI used: gpt-5.

Thank you. Check this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.Footer__Aside {
    justify-content: center;
}

" :glowing_star: Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! :raising_hands: "

1 Like