Edit copyright in Hesita Child Theme

You Could Also Try This Cheeky Little Trick 🙂

If you just want a quick and easy, no fuss change, you can do this to the Hestia theme copyright area.

Just add the following code to your child theme CSS or to the WordPress Customise > CSS area.

.copyright a {
    display: none;
}
.copyright:before {
    content: "My site";
}
.copyright:after {
    content: " Craig";
}

Alternatively, you could just hide it all.

.copyright {
    display: none;
}

enter image description here