Hi! You can use Custom CSS to make changes like this, but I do want to warn you that sometimes adding text with CSS can be a bit tricky. You might need to adjust the CSS in the future, for example if the theme’s footer style changes, so I’m going to explain how I came up with the change in case you need to play with it in the future. :)
I used the method described in our guide to How to Find Your Theme’s CSS to find what CSS to change here. In this case, the footer text in your theme uses this CSS class:
.site-info
You can add more text after that with CSS like this:
.site-info:after {
content: “Copyright Text”;
}
You can replace the text between the quotation marks with the actual copyright text you want to add there.
To add that CSS to your site, you can head to your site’s Customizer and paste it into the CSS section there.
You can also get more tips for customizing your theme with CSS in our CSS Basics guide.
Please let me know if I can do anything more to help with that!