04 Nov
Hide the date on Blogger’s comments
This option is not on Blogger’s options, but it can be done through CSS.
- Go to the “Layout” tab, also called “Design” from the desktop, and then go to “Edit HTML”. After this, check the “Expand widgets template” box.
- Search for the following code:
- And just before write the following:
- This will hide comment’s date, but will also hide the icon that allow us deleting a comment as blog’s owner. If you want this icon to keep alive, then search for this code:
- Then save and that’s it.

]]></b:skin>.comment-timestamp {
display: none;
visibility: hiden;
}<dd class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='"#comment-" + data:comment.id' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</dd>And replace it with the following:
<dd class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='"#comment-" + data:comment.id' title='comment permalink'>
<data:comment.timestamp/>
</a>
</span>
<b:include data='comment' name='commentDeleteIcon'/>
</dd>Lee este artículo en español: Ocultar la fecha en los comentarios de Blogger.
thank you very much for this excellent tips, i really appreciate it. I was searching for it desperately.
Thanks. Very helpful… Need to remove the date but show the time.
Thanks,, It helped me
Hi,
This code don’t hide my comments dates on Blogger.
What can i try ?
Thanks
I tried the above but the date/time still shows. Can you please confirm or show exactly what you mean by ‘And just before write the following’.. Does this mean above this script or what? This is how it looks on mine: ..Thanks
.comment-timestamp {
display: none;
visibility: hiden;
}
]]>