Three days ago I asked about how to add a copyright button in place of “Prowdly powered by wordpress” – Now that question was resolved but with a problem. The problem is that it is a clickable link that directs me to the wordpress site. But I don’t want that. I only want it as a normal text.
1 Answers
To resolve this problem you can open the sidebar.php / line 36 and then remove the following Link: http://wordpress.org/
<?php do_action( 'wallpress_credits' ); ?><a href="<?php echo esc_url( __('http://wordpress.org/', 'wallpress' ) ); ?>"title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'wallpress' ); ?>"><?php printf( __( 'Proudly powered by %s', 'wallpress' ), 'WordPress' ); ?></a>
Also, you can add the following code to the style.css file.
<style>
#copyright a:hover {
color: #...;
}
</style>
Regards,
Dominic
Please login or Register to submit your answer