How can I center the text in my website footer?

Its allighns to the left on desktop i want all the text in the footer centered.

(link removed)

@Cloudynova - please add this css to the very end of your base.css file and check

.footer__content-bottom-wrapper {justify-content: center;}

Hey @Cloudynova , you can add the following CSS to your your section-footer.css file located under assets > section-footer.css. Within this file, around line 53 you will see the following CSS:

.footer__content-bottom-wrapper {
  display: flex;
  width: 100%;
}

Now replace the above CSS with this:

.footer__content-bottom-wrapper {
  display: flex;
  justify-content:center;
  width: 100%;
}

This will align the footer items to the center. Let me know if you have any questions and ofcourse if you need me to do it, please don’t hesitate to reach out to me.

That was quick, thanks!

@Cloudynova - welcome

.