Select Page
Advertisements
  1. In the footer.php of your Child Theme, look for the following code and remove it:
<?php
if ( false !== et_get_option( 'show_footer_social_icons', true ) ) {get_template_part( 'includes/social_icons', 'footer' );
}
echo et_get_footer_credits();
?>
  1. Now paste the following code in its place:
<?php
if ( false !== et_get_option( 'show_footer_social_icons', true ) ) {get_template_part( 'includes/social_icons', 'footer' );
}
?>
<p id="footer-info">&copy; <?php echo date('Y'); ?>
<?php printf( __( ' ABC Company. All Rights Reserved.' )); ?></p><div class="powered">Powered by <a href="https://wordpress.org" target="_blank">WordPress</a>.</div>
  1. Finally, add the following CSS to your custom CSS file. You can customize this CSS however you desire your footer credits to be styled.
#footer-info { float: none; text-align: center;opacity: 0.15; color: #fff;}
.powered a:hover {opacity: 0.5;}
.powered a {color: #fff; font-weight: 600;}
.powered {text-align: center; opacity: 0.25; padding: 10px 0 50px 0; color: #fff; font-size: 10px;}