Remove Footer Copyright – Powered by Colorlib from theme footer

Hello,

I really love your work guys !!!

I’m working on a personal project & i want to remove this from the footer :

Theme by Colorlib Powered by WordPress

is that possible or i search for another theme ? ?

Best Regards,
Kasia

Hi Kasia,

I hope you are well today and thank you for your question.

You can try removing it by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


.copyright.col-md-12 {
    display: none;
}

Best Regards,
Movin

Hi,

but now there is nothing there :frowning:
I would like to put there some information.

Kasia

If you want to modify the footer information then instead of the above CSS code please try using the Activello child theme shared in the following topic.

https://colorlibsupport.com/t/modify-footer-for-mobile-version/#post-78946

I still don’t know how to do it :frowning:

Just download the child theme child-theme-105.zip shared in this reply https://colorlibsupport.com/t/modify-footer-for-mobile-version/#post-53854

That custom child theme of Activello theme that contains following custom code in the functions.php file so just edit the text in this file to whatever you want to.


function custom_activello_footer_info() {
global $activello_footer_info;
  printf( esc_html__( 'Theme by %1$s Powered by %2$s', 'activello' ) , '<a href="https://colorlib.com/" target="_blank">Colorlib</a>', '<a href="http://wordpress.org/" target="_blank">WordPress</a>');
}