Sent you a message!
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.
1 Like