How can i shift the copyright logo and text 2023 to the centre of the desktop page like the icons payment.
Pls assist.
Thanks.
How can i shift the copyright logo and text 2023 to the centre of the desktop page like the icons payment.
Pls assist.
Thanks.
share the URL.
deleted. Resolved. Thanks all for the help. Great Community.
Hey @jsimk
Kindly share your Store Password as well
Hi @jsimk
You can try following these steps to center the copyright logo and text on the desktop page:
footer.liquid
file in the theme section of your Shopify admin.<div class="footer__column footer__column--info">
element in the file.<div class="footer__column footer__column--info">
Element:<div class="footer__column">
<style> .footer__column.footer__column--info {
align-items: center;
}
</style>
</div>
See my screenshot below:
After making these changes, save the file and check your website to see if the copyright logo and text are now centered on the desktop page.
deleted.
Hi,
Thanks for the reply. But it didn’t work.
In your case, it seem like it needs to update like the following:
add “flex-direction: column;” to the CSS selector: “.footer__content-bottom-wrapper”
add below css into base.css file
.footer__content-bottom-wrapper {
display: block !important;
}
.footer__content-bottom-wrapper:not(.footer__content-bottom-wrapper--center) .footer__copyright {
text-align: center !important;
}
Hello @jsimk ,
You can follow these steps:
I hope the above is useful to you.
Kind & Best regards,
GemPages Support Team
Thanks it works now with Weaverse’s solution.