
Is there a code I can use to Centre all the footer contents, I cant find anything, any help would be massively appreciated!

Is there a code I can use to Centre all the footer contents, I cant find anything, any help would be massively appreciated!
Hi @FinlayMg
You can try adding below code:
Go to Online Store → Theme → Edit code. https://prnt.sc/elKuwYWlBrEo
Open your base.css in the Assets folder.
Paste the below code at the end of the file. https://prnt.sc/8iQ1_aIPNBBP
footer.footer * {
text-align: center;
justify-content: center;
}
footer.footer form{
margin-left: auto !important;
margin-right: auto !important;
}
Best regards,
GemPages Support Team
Hi @FinlayMg ,
Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:
@media screen and (min-width: 750px){
.footer__content-top .grid {
justify-content: center !important;
text-align: center !important;
}
}
Hope it helps!