This has cool feature also:
- Sort by title (ascending or descending) - by clicking the "POST TITLE" table header.
- Sort by date (older first or newer first) - by clicking the "POST DATE" table header.
- Option to show all post by Label
- When you hover the post title a snippet of the post will display.
Things that it doesn't have, which is acceptable:
- You can't change the date format
- You can't change table header
unless you edit the script.
Here's how to implement it.
1. Create a Page
For New Blogger Interface: Dashboard > Pages > New Page > Blank Page
Put a title, of course, like "Archive". :D
2. HTML Tab > Paste the code below
3. Preview it, if it's ok then Publish.You can customize the appearance by touching the CSS selectors from <style>....</style>
You can also style your static page.
<!-- Static page styling Start-->The RED CODE are the widget that you want to hide when viewing your page.
<b:if cond='data:blog.pageType == "static_page"'>
<style>
.blog-pager, #footer-wrapper, #footer-wrapper2, .footer, .post-footer, .feed-links, .sidebar { display:none !important;}
#main-wrapper {width: 95%; float:none; margin: 0 auto !important;}
</style>
</b:if>
<!-- Static page styling End -->
That's all folks!
UPDATE Jan 3, 2013
- To remove the tooltip/short snippet of the posts when you hover the title, use this script.
http://mattmorzcodes.googlecode.com/files/archivenullhead.jsChange this <script src="http://bloggergadgets.googlecode.com/files/blogtoc_orig.js" type="text/javascript"> with the code above.
- To hide the the date or the label column add this CSS code.
.toc-header-col2,.toc-entry-col2{display:none} , if you want to hide date column
.toc-header-col3,.toc-entry-col3{display:none} , if you want to hide the label column
CODES PROVIDED BY BLOGGERPLUGINS

