-->

Remove Date Header From Blog (Blogger)

If you do not want to show the date above your post, there is a simple way to remove the date above the post 


"It is always wise to take a backup before editing HTML section of blog."


1. Log into your Blog Account
2. Go to Design>>Edit HTML.
3. Find out (ctrl+F) the below code


/* Posts
-----------------------------------------------
*/
h2.date-header {
margin:1.5em 0 .5em;
}


copy this and paste after h2.date-header (given in red color)


 visibility:hidden; 

after it this will show like this
/* Posts
-----------------------------------------------
*/
h2.date-header {
margin:1.5em 0 .5em;
visibility:hidden;
}


Preview your blog before saving.



Baca juga