Showing posts with label Change 'Add a Comment'. Show all posts
Showing posts with label Change 'Add a Comment'. Show all posts

Friday, November 2, 2012

Change 'Add a Comment' in Blogger Dynamic Views

Before
After
By default, the comment link in Dynamic Views is titled as 'Add a Comment'. There isn't any way to change this phrase in the settings. In this post, I'm gonna show you how you can do just this. 


Go to Dashboard --> Template --> Customize --> Advanced --> Add CSS --> paste the following code --> Press enter after the last character of the last line } --> Apply to Blog. 
1
2
3
4
5
6
7
.comments-header h3{
font-size: 0px;
}
.comments-header h3:before{
content: "Drop some words!";
font-size: 14px;
}
In the example above, I've changed 'Add a Comment' to 'Drop some words!'. Feel free to change this by altering line 5 in the code above.
You might also like: