Let's see how it look like first. Is it good? Now, see it live. Click here . Then click the Forum Tab , wait 'til it loads. How to do it? Actually, it's very easy. 1. Just go to this site and sign-up. 2. Then go to your Blogger Dashboard > Edit Posts or New Posts > Edit Pages > Create New Page. 3. Name your page as Forum or anything you want. 4. Click Edit HTML 5. Paste the script that is given by tal.ki. The script looks like this. <script src='http://j9tjfgzo57.embed.tal.ki/embed/1.js' type='text/javascript'/><div id='j9tjfgzo57t4lk1prm0' style='font-size:80%; text-align:center;'>get your own <a href='http://tal.ki?utm_source=install&utm_medium=link&utm_campaign=get_your_own'>embeddable forum</a> with Talki</div> 6. Preview, if it's fine. Publish it! That's it!
This is for me, the better Archive Page. Let's see the how it looks. or you can just click my ARCHIVE PAGE in the navigation bar on top. 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 <div id="bp_toc"> Loading TOC. Please wait....</div> <script src="http:/...
Let's say you have that kind of chart/graph above, and then you want to set its min and max range...Nah, here's the code: chart: { renderTo: 'container', type: 'line', //width: 800, height: 450, alignTicks: false }, ... yAxis: [{ //primary y axis min: 0, max: 100, tickInterval: 20 }, { min: 0, max: 150, tickInterval: 30, opposite: !0 }] ... You just need to add alignTicks: false in your chart option then set the y-axis' tickInterval . It is much better to divide each max range with the same value.