1. Go to your Blogger Dashboard > Layout > Edit HTML > Check "Expand Widget Templates"
2. And search for the following piece of code:
<div class='blog-posts'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'>
<data:post.dateHeader/>
</h2> </b:if>
<b:include data='post' name='post'/>
3. Now replace above code with following code.
<div class='blog-posts'>
<b:loop values='data:posts' var='post'>
<div class='date-header'>
<data:post.timestamp/>
</div>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "item"'>
You can change style of the date header in Blogger Dashboard > Settings > Formatting
Credit
0 comments:
Post a Comment