I want to change and center-align the footer copyright text on this site:
https://johnnylandalegarlic.myshopify.com/
PW: johnny
I’ve seen tutorials but I can’t figure it out. I accessed footer.liquid but i can’t find the “powered by” text.
I want to change and center-align the footer copyright text on this site:
https://johnnylandalegarlic.myshopify.com/
PW: johnny
I’ve seen tutorials but I can’t figure it out. I accessed footer.liquid but i can’t find the “powered by” text.
@elenachiara add below code into base.css file
.footer__content-bottom-wrapper {
display: flex;
width: 100%;
place-content: center !important;
}
this centered it, thank you!, but how do i modify the text?
Thank you so much! Solved