Add some text to the copyright text

Hello,
Can I change some text to the copyright line in the bottom of the page? Maybe via CSS? I know you suggest to use the child theme but I don’t know how to do that.

Thank u very much for your answer.

It can be done using a pure CSS. Add this code to Theme Options - Other - Custom CSS and change text accordingly.

.copyright:after {
    content: "Your new text goes here!";
}

You can also add text before copyright text, just tweak this code like this

.copyright:before {
    content: "Your new text goes here!";
}

Thank you very much Aigars, Could I even modify the copiright text with this method?

No, then you will have to get your hands dirty with Child Theme and custom functions that will overwrite the existing copyright information.

Ok, Thank you very much Aigars.