This modification moves the authorname and the timestamp to the top of the post, just before the post title.
Edit the template in HTML-mode, and expand all widget templates. Search for the following line of code:
<b:includable id='post' var='post'>
<span class='post-author'>Or something like that. Just be carefull to copy all the content between
<b:if cond='data:top.showAuthor'>
<data:top.authorLabel/> <data:post.author/>
</b:if>
</span>
<span class='post-timestamp'>
<b:if cond='data:top.showTimestamp'>
<data:top.timestampLabel/>
<b:if cond='data:post.url'>
<a class='timestamp-link' expr:href='data:post.url' title='permanent link'>
<data:post.timestamp/> </a>
</b:if>
</b:if>
</span>
<span class='post-author'>
</span>
Cut this code from the template.
Scroll back to the
<b:includable id='post' var='post'>and paste the code just after this line.
Note: check that there is a space between the closing </span>-tag and the opening <span>-tag, to separate the author name from the timstamp label.
Save the template.
0 comments:
Post a Comment