Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
My website is https://beug.com.au/
My footer is currently blank, I need it to have this centred in the footer contents, "© 2025, Beug." Ensuring that the "Beug." is a hyperlink back to the homepage.
Hope this is enough information, let me know if have q's. This has been doing my head in any help would be much appreciated .
Hi @shrekish,
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.footer__content-bottom-wrapper.page-width {
text-align: center;
display: flex !important;
justify-content: center;
}
.footer__copyright {
display: block !important;
}
Thanks!