Posted by Winslow Lions on

In the past you created a 'Raw Footer HTML' that I have included in our site..

<p><p style="text-align: center;">Charitable Incorporated Organisation number 1181219</p>
<p style="text-align: center;">We treat your personal data with care. If you'd like to know more please read our <a href="https://winslowlions.org.uk/assets/documents/privacy-policy">Privacy Policy</a></p>
<p style="text-align: center;">Website hosted by:</p>

But how can I force the 'Voice Communities Footer' to be centre aligned as well?

2: Re: Centralised Footer (response to 1)
Posted by Joe Oldak on

You can add a style in the Raw Header HTML that makes everything in the footer centred, like this:

<style>
#footerText {
  text-align: center;
}
</style>

Good luck!

Joe