This tutorial will help you change color of the text in the sidebar. To learn how to change the color of title of the sidebar click here.
Finished Look:
The highlighted section will be changed.
Go to:
Dashboard / Appearance / Editor / style.css
Code:
.secondary a {
color:#000000;
}
Back End Example:
Your dashboard should look something like this.

















How to Remove ‘Comments Are Currently Closed’ in WordPress
Published July 30, 2011 Uncategorized Leave a CommentTags: closed, comments, currently, custom, delete, remove, theme, wordpress
If you choose to disable your post comments WordPress leaves behind some ugly text in that space. This technique will remove the ’0 responses’ and ‘comments currently closed’ text from your post footer.
Finished Look:
The highlighted section will be removed.
Go to:
Dashboard / Appearance / Editor / style.css
Code:
.comments {
display:none
}
Back End Example:
Your dashboard should look something like this.