How to modify the footer credits

How to modify the footer credits ?

Thanks !

Hey there,
I hope you’re doing well today

To do this, you can go to Appearance > Customize > Footer > Copyright Text

Best Regards,
Support

No, the : Theme by Colorlib Powered by WordPress , did not go away.

See the screenshot

Hello there,

You can use the following CSS code to remove the footer credits by going to Appearance > Customize > Additional CSS and pasting it there.

/*Remove footer credits*/
.footer-credits {
    color: #fff;
    display: none;
}

Best Regards,
Support

I want to move it in the code,

thanks :slight_smile:

Hi,

If you want to move that from code file itself means, copy the footer.php from your parent theme and paste that in your child theme, how to create child theme: Child Themes « WordPress Codex

After in the child theme’s footer.php remove these lines from line #32 to #34

it looks like this: http://take.ms/5vsRS

Let us know,

Thanks,
laranz.